Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 426 for delegated (0.21 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. 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)
  5. 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)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                    is KtRealSourceElementKind -> {
                        val isArrayFromVararg = delegatedTypeRef?.source?.kind is KtFakeSourceElementKind.ArrayTypeFromVarargParameter;
    
                        // type ref with delegated type ref with such source kind is NOT directly present in the source, so we ignore it
                        !isArrayFromVararg
                    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-61075`](https://youtrack.jetbrains.com/issue/KT-61075) K2: type inference for delegate expressions with complexly bounded type variables fails on properties with annotated accessors
    - [`KT-62671`](https://youtrack.jetbrains.com/issue/KT-62671) K2: fir2ir generates a duplicate of delegated function for class from a common module
    - [`KT-62541`](https://youtrack.jetbrains.com/issue/KT-62541) K2: Missed type mismatch error
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is CallableMemberDescriptor -> when (kind) {
                CallableMemberDescriptor.Kind.DELEGATION -> return KaSymbolOrigin.DELEGATED
                CallableMemberDescriptor.Kind.SYNTHESIZED -> return KaSymbolOrigin.SOURCE_MEMBER_GENERATED
                else -> {
                    if (isDynamic()) {
                        return KaSymbolOrigin.JS_DYNAMIC
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    			break
    		}
    		if atomic.CompareAndSwapInt64(&jsonpatch.AccumulatedCopySizeLimit, existing, c.JSONPatchMaxCopyBytes) {
    			break
    		}
    	}
    
    	// first add poststarthooks from delegated targets
    	for k, v := range delegationTarget.PostStartHooks() {
    		s.postStartHooks[k] = v
    	}
    
    	for k, v := range delegationTarget.PreShutdownHooks() {
    		s.preShutdownHooks[k] = v
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      STRIDED_SLICE = 45,
      BIDIRECTIONAL_SEQUENCE_RNN = 46,
      EXP = 47,
      TOPK_V2 = 48,
      SPLIT = 49,
      LOG_SOFTMAX = 50,
      // DELEGATE is a special op type for the operations which are delegated to
      // other backends.
      // WARNING: Experimental interface, subject to change
      DELEGATE = 51,
      BIDIRECTIONAL_SEQUENCE_LSTM = 52,
      CAST = 53,
      PRELU = 54,
      MAXIMUM = 55,
      ARG_MAX = 56,
      MINIMUM = 57,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top