Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,062 for delegated (0.2 sec)

  1. pkg/controlplane/apiserver/config.go

    }
    
    // BuildGenericConfig takes the generic controlplane apiserver options and produces
    // the genericapiserver.Config associated with it. The genericapiserver.Config is
    // often shared between multiple delegated apiservers.
    func BuildGenericConfig(
    	s options.CompletedOptions,
    	schemes []*runtime.Scheme,
    	resourceConfig *serverstorage.ResourceConfig,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    				var err error
    				deleted, err = kl.mirrorPodClient.DeleteMirrorPod(podFullName, &mirrorPod.ObjectMeta.UID)
    				if deleted {
    					klog.InfoS("Deleted mirror pod because it is outdated", "pod", klog.KObj(mirrorPod))
    				} else if err != nil {
    					klog.ErrorS(err, "Failed deleting mirror pod", "pod", klog.KObj(mirrorPod))
    				}
    			}
    		}
    		if mirrorPod == nil || deleted {
    			node, err := kl.GetNode()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java'
         * }
         *
         * test {
         *     useTestNG() {
         *         // report generation delegated to TestNG library:
         *         useDefaultListeners = true
         *     }
         *
         *     // turn off Gradle's HTML report to avoid replacing the
         *     // reports generated by TestNG library:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    			strictErrs = append(strictErrs, err)
    		}
    	}
    
    	var strictJSONErrs []error
    	if u, isUnstructured := into.(runtime.Unstructured); isUnstructured {
    		// Unstructured is a custom unmarshaler that gets delegated
    		// to, so in order to detect strict JSON errors we need
    		// to unmarshal directly into the object.
    		m := map[string]interface{}{}
    		strictJSONErrs, err = kjson.UnmarshalStrict(data, &m)
    		u.SetUnstructuredContent(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    type Stage string
    
    // Valid audit stages.
    const (
    	// The stage for events generated as soon as the audit handler receives the request, and before it
    	// is delegated down the handler chain.
    	StageRequestReceived Stage = "RequestReceived"
    	// The stage for events generated once the response headers are sent, but before the response body
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    include::sample[dir="snippets/kotlinDsl/configurations-and-dependencies-custom/groovy",files="build.gradle[tags=custom]"]
    ====
    
    Note that we can only use the `db(...)` and `integTestImplementation(...)` notation within the `dependencies {}` block in the above example because both configurations are declared as delegated properties beforehand via the `creating()` method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/s390x/asm.go

    // is in a different module.
    //
    //	<go.link.addmoduledata>:
    //		larl  %r2, <local.moduledata>
    //		jg    <runtime.addmoduledata@plt>
    //		undef
    //
    // The job of appending the moduledata is delegated to runtime.addmoduledata.
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    	if initfunc == nil {
    		return
    	}
    
    	// larl %r2, <local.moduledata>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/manager.go

    			fileName: kubeadmconstants.SchedulerKubeConfigFileName,
    		},
    		//NB. we are excluding KubeletKubeConfig from renewal because management of this certificate is delegated to kubelet
    	}
    
    	// create a CertificateRenewHandler for each kubeConfig file
    	for _, kubeConfig := range kubeConfigs {
    		// create a ReadWriter for certificates embedded in kubeConfig files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ----
    ====
    
    [[sec:closure_delegate]]
    ==== Closure Delegates
    
    Each closure has a `delegate` object. Groovy uses this delegate to look up variable and method references to nonlocal variables and closure parameters.
    Gradle uses this for _configuration closures_,
    where the `delegate` object refers to the object being configured.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	signals.ShutdownInitiated = wrapLifecycleSignal(t, signals.ShutdownInitiated, before, nil)
    }
    
    func wrapLifecycleSignal(t *testing.T, delegated lifecycleSignal, before, after func(_ lifecycleSignal)) lifecycleSignal {
    	return &wrappedLifecycleSignal{
    		lifecycleSignal: delegated,
    		before:          before,
    		after:           after,
    	}
    }
    
    // the server may not wait enough time between firing two events for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top