Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,923 for ApplyG (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. hack/testdata/pod-apply.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 174 bytes
    - Viewed (0)
  5. hack/testdata/filter/pod-apply-selector.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 211 bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            manager.findPlugin("foo") == null
        }
    
        def "can apply rules plugin with no id"() {
            when:
            manager.apply(rulesClass)
    
            then:
            1 * target.applyRules(null, rulesClass)
    
            and:
            manager.pluginContainer.isEmpty()
        }
    
        def "can apply rules plugin by class with id"() {
            given:
            addPluginId("foo", rulesClass)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/PredicatesTest.java

        assertFalse(isNumber.apply(null));
      }
    
      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_interface() {
        Predicate<@Nullable Object> isComparable = Predicates.instanceOf(Comparable.class);
    
        assertTrue(isComparable.apply(1));
        assertTrue(isComparable.apply(2.0f));
        assertTrue(isComparable.apply(""));
        assertFalse(isComparable.apply(null));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

                "src/integTest/groovy",
                "src/integTest/resources"
            ]
    
            expectedOrder.each { testFile(it).mkdirs() }
    
            runEclipseTask """
    apply plugin: "java"
    apply plugin: "groovy"
    apply plugin: "eclipse"
    
    sourceSets {
        integTest {
            resources { srcDir "src/integTest/resources" }
            java { srcDir "src/integTest/java" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

                    id("plugin-id").version("1.0").apply(true)
                    id("plugin-id").version("2.0") apply true
                    id("plugin-id") version "3.0".apply(true) // BUG!
                    id("plugin-id") version "4.0" apply true
    
                    id("plugin-id").apply(false).version("1.0")
                    id("plugin-id").apply(false) version "2.0"
                    id("plugin-id") apply false.version("3.0") // BUG!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        assertEquals(p1.apply(1.0f), p2.apply(1.0f));
        assertEquals(p1.apply(5.0f), p2.apply(5.0f));
      }
    
      public void testForPredicate() {
        Function<Object, Boolean> alwaysTrue = Functions.forPredicate(Predicates.alwaysTrue());
        Function<Object, Boolean> alwaysFalse = Functions.forPredicate(Predicates.alwaysFalse());
    
        assertTrue(alwaysTrue.apply(0));
        assertFalse(alwaysFalse.apply(0));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top