Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,521 for applyTo (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	o.WebhookOptions.AddFlags(fs)
    	o.WebhookOptions.BatchOptions.AddFlags(pluginwebhook.PluginName, fs)
    	o.WebhookOptions.TruncateOptions.AddFlags(pluginwebhook.PluginName, fs)
    }
    
    func (o *AuditOptions) ApplyTo(
    	c *server.Config,
    ) error {
    	if o == nil {
    		return nil
    	}
    	if c == nil {
    		return fmt.Errorf("server config must be non-nil")
    	}
    
    	// 1. Build policy evaluator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init.go

    		return nil, err
    	}
    
    	if err = validation.ValidateMixedArguments(cmd.Flags()); err != nil {
    		return nil, err
    	}
    
    	if err = initOptions.bto.ApplyTo(initOptions.externalInitCfg); err != nil {
    		return nil, err
    	}
    
    	// Either use the config file if specified, or convert public kubeadm API to the internal InitConfiguration
    	// and validates InitConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		return false
    	}
    
    	// skip listener port check for special virtual inbound and outbound listeners
    	// to support portNumber listener filter field within those special listeners as well
    	if lp.ApplyTo != networking.EnvoyFilter_LISTENER &&
    		(listener.Name == model.VirtualInboundListenerName || listener.Name == model.VirtualOutboundListenerName) {
    		return true
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "X", nil, n.X)
    		a.applyList(n, "Indices")
    
    	case *ast.SliceExpr:
    		a.apply(n, "X", nil, n.X)
    		a.apply(n, "Low", nil, n.Low)
    		a.apply(n, "High", nil, n.High)
    		a.apply(n, "Max", nil, n.Max)
    
    	case *ast.TypeAssertExpr:
    		a.apply(n, "X", nil, n.X)
    		a.apply(n, "Type", nil, n.Type)
    
    	case *ast.CallExpr:
    		a.apply(n, "Fun", nil, n.Fun)
    		a.applyList(n, "Args")
    
    	case *ast.StarExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K 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. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def help = events.operation("Apply plugin org.gradle.help-tasks to root project 'single'")
            def java = events.operation("Apply plugin org.gradle.java to root project 'single'")
            def javaBase = events.operation("Apply plugin org.gradle.api.plugins.JavaBasePlugin to root project 'single'")
            def base = events.operation("Apply plugin org.gradle.api.plugins.BasePlugin to root project 'single'")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            pojoProject.pluginManager.apply(JavaPlugin)
            def beanProject = TestUtil.createChildProject(project, 'bean')
            beanProject.pluginManager.apply(JavaPlugin)
    
            beanProject.dependencies {
                runtimeOnly project(path: pojoProject.path)
            }
    
            when:
            project.pluginManager.apply(EarPlugin)
            project.dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. 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)
Back to top