Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,201 for unapply (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import io.airlift.compress.snappy.SnappyFramedInputStream;
    import io.airlift.compress.snappy.SnappyFramedOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyPacker implements Packer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/DefaultUserCodeApplicationContext.java

            @Override
            public void reapply(Runnable runnable) {
                CurrentApplication current = currentApplication.get();
                currentApplication.set(this);
                try {
                    runnable.run();
                } finally {
                    currentApplication.set(current);
                }
            }
    
            @Override
            public <T> T reapply(Supplier<T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top