Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,680 for unapply (0.12 sec)

  1. cmd/kubeadm/app/cmd/upgrade/apply.go

    	if ok {
    		upgradeCfg.Apply.EtcdUpgrade = etcdUpgrade
    	} else {
    		return cmdutil.TypeMismatchErr("etcdUpgrade", "bool")
    	}
    
    	renewCerts, ok := cmdutil.ValueFromFlagsOrConfig(flagSet, options.CertificateRenewal, upgradeCfg.Apply.CertificateRenewal, &flags.renewCerts).(*bool)
    	if ok {
    		upgradeCfg.Apply.CertificateRenewal = renewCerts
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/apply.go

    type AppliedResult struct {
    	// processedObjects is the list of objects that were processed in this apply operation.
    	processedObjects object.K8sObjects
    	// deployed is the number of objects have been deployed which means
    	// it's in the cache and it's not changed from the cache.
    	deployed int
    }
    
    // Succeed returns true if the apply operation succeeded.
    func (r AppliedResult) Succeed() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tunnelingconfig/apply.go

    	networking "istio.io/api/networking/v1alpha3"
    )
    
    type ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string)
    
    // Apply configures tunneling_config in a given TcpProxy depending on the destination rule and the destination hosts
    var Apply ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string) {
    	var tunnelSettings *networking.TrafficPolicy_TunnelSettings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. pkg/test/util/yml/apply.go

    John Howard <******@****.***> 1697526158 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/MatchingCopyAction.java

        private final PatternMatcher matcher;
    
        private final Action<? super FileCopyDetails> toApply;
    
        public MatchingCopyAction(PatternMatcher matcher, Action<? super FileCopyDetails> toApply) {
            this.matcher = matcher;
            this.toApply = toApply;
        }
    
        @Override
        public void execute(FileCopyDetails details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 04 11:16:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. hack/testdata/filter/pod-dont-apply.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: selector-test-pod-dont-apply
      labels:
        name: selector-test-pod-dont-apply
        unique-label: biz
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 228 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScopeTest.kt

            PluginDependenciesSpecScope(createSpec(1)).block()
            pluginRequests.toList()
        }
    
    
    fun plugin(id: String, version: String? = null, isApply: Boolean = true) = Plugin(id, version, isApply)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 06:46:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/ide/base-ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/IdePluginTest.groovy

    }
    
    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
        @Override protected void onApply(Project target) {
            def worker = target.task('generateXml')
            addWorker(target.getTasks().named(worker.getName()), worker.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            .put("tar.snappy", new SnappyPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.commons", new SnappyCommonsPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.dain", new SnappyDainPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.small", new SnappyPacker(new CommonsTarPacker(2)))
            .put("tar.snappy.large", new SnappyPacker(new CommonsTarPacker(64)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

            }
            doApply(plugin);
        }
    
        @Override
        public void apply(Class<?> type) {
            doApply(pluginRegistry.inspect(type));
        }
    
        private void doApply(final PluginImplementation<?> plugin) {
            PluginId pluginId = plugin.getPluginId();
            final String pluginIdStr = pluginId == null ? null : pluginId.toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top