Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,328 for runes (0.05 sec)

  1. pkg/controller/job/success_policy_test.go

    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{{
    					SucceededIndexes: ptr.To(""),
    				}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile.bzl

            the value is "Bridge", use MLIR to translate GraphDef to HLO.
          deps: a list of deps to include on the build rules for the generated
            library, added to the standard deps if standard_runtime_deps is True.
          tags: tags to apply to subsidiary build rules.
          copts: list of copts to pass to cc rules.
        """
        _tf_library(
            name,
            graph,
            config,
            debug_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - destinationPort: 80
                - notRule:
                    orRules:
                      rules:
                      - destinationPort: 8000
                - orRules:
                    rules:
                    - destinationIp:
                        addressPrefix: 10.10.10.10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/apply.go

    	if err := PerformControlPlaneUpgrade(flags, client, waiter, initCfg, upgradeCfg); err != nil {
    		return errors.Wrap(err, "[upgrade/apply] FATAL")
    	}
    
    	// Upgrade RBAC rules and addons.
    	klog.V(1).Infoln("[upgrade/postupgrade] upgrading RBAC rules and addons")
    	if err := upgrade.PerformPostUpgradeTasks(client, initCfg, upgradeCfg.Apply.Patches.Directory, flags.dryRun, flags.applyPlanFlags.out); err != nil {
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

    import org.gradle.internal.rules.ClosureBackedRuleAction
    import org.gradle.internal.rules.NoInputsRuleAction
    import org.gradle.internal.rules.SpecRuleAction
    import org.gradle.util.AttributeTestUtil
    import spock.lang.Specification
    
    class ComponentSelectionRulesProcessorTest extends Specification {
        def processor = new ComponentSelectionRulesProcessor()
        def rules = []
        ComponentSelectionInternal componentSelection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    	for i, h := range webhooks {
    		mutating[i] = registrationv1.MutatingWebhook{
    			Name:                    h.Name,
    			ClientConfig:            h.ClientConfig,
    			Rules:                   h.Rules,
    			FailurePolicy:           h.FailurePolicy,
    			MatchPolicy:             h.MatchPolicy,
    			NamespaceSelector:       h.NamespaceSelector,
    			ObjectSelector:          h.ObjectSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                    @Model
                    void p1(Thing t) {
                    }
    
                    @Rules
                    void rules(CalculateName rules, Thing t) {
                    }
                }
    
                class CalculateName extends RuleSource {
                    @Rules
                    void rules(SpecializeName rules, Thing t) {
                    }
                }
    
                class SpecializeName extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                }
            }
            apply plugin: Rules
            """
    
            expect:
            succeeds "validate"
        }
    
    
        def "can create a ModelMap of List<String>"() {
            buildFile << """
                class Rules extends RuleSource {
                    @Model void things(ModelMap<List<String>> things) { }
                }
                apply plugin: Rules
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/server.go

    			// silence client-go warnings.
    			// kube-apiserver loopback clients should not log self-issued warnings.
    			rest.SetDefaultWarningHandler(rest.NoWarnings{})
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			verflag.PrintAndExitIfRequested()
    			fs := cmd.Flags()
    
    			// Activate logging as soon as possible, after that
    			// show flags with the final logging configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedAsProjectPluginIntegrationTest.groovy

        }
    
        def "informative error message when two plugins declare model at the same path and model is already created"() {
            when:
            buildScript '''
                class MyPlugin {
                    static class Rules extends RuleSource {
                        @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top