Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,328 for runes (0.04 sec)

  1. tools/docker-builder/main.go

    	"docker.io/istio",
    	"istio",
    	"gcr.io/istio-release",
    	"gcr.io/istio-testing",
    )
    
    var rootCmd = &cobra.Command{
    	SilenceUsage: true,
    	Short:        "Builds Istio docker images",
    	RunE: func(cmd *cobra.Command, _ []string) error {
    		t0 := time.Now()
    		defer func() {
    			log.WithLabels("runtime", time.Since(t0)).Infof("build complete")
    		}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    		expectCallKind        schema.GroupVersionKind
    		matchError            error
    		matchResult           bool
    	}{
    		{
    			name:        "no rules (just write)",
    			webhook:     &v1.ValidatingWebhook{NamespaceSelector: &metav1.LabelSelector{}, Rules: []v1.RuleWithOperations{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  3. cmd/batch-expire_gen.go

    				return
    			}
    		case "Rules":
    			var zb0002 uint32
    			zb0002, err = dc.ReadArrayHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Rules")
    				return
    			}
    			if cap(z.Rules) >= int(zb0002) {
    				z.Rules = (z.Rules)[:zb0002]
    			} else {
    				z.Rules = make([]BatchJobExpireFilter, zb0002)
    			}
    			for za0001 := range z.Rules {
    				err = z.Rules[za0001].DecodeMsg(dc)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	// A list of pod failure policy rules. The rules are evaluated in order.
    	// Once a rule matches a Pod failure, the remaining of the rules are ignored.
    	// When no rule matches the Pod failure, the default handling applies - the
    	// counter of pod failures is incremented and it is checked against
    	// the backoffLimit. At most 20 elements are allowed.
    	// +listType=atomic
    	Rules []PodFailurePolicyRule
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                      | Rules:
                         ⤷ components { ... } @ build.gradle line 88, column 5
                    + myComponent
                          | Type:   	UnmanagedComponent
                          | Creator: 	myComponent(UnmanagedComponent) { ... } @ build.gradle line 89, column 9
                          | Rules:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. pkg/proxy/metrics/metrics.go

    		},
    	)
    
    	// SyncProxyRulesLastTimestamp is the timestamp proxy rules were last
    	// successfully synced.
    	SyncProxyRulesLastTimestamp = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_last_timestamp_seconds",
    			Help:           "The last time proxy rules were successfully synced",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/reset.go

    	utilruntime "k8s.io/kubernetes/cmd/kubeadm/app/util/runtime"
    )
    
    var (
    	iptablesCleanupInstructions = dedent.Dedent(`
    		The reset process does not reset or clean up iptables rules or IPVS tables.
    		If you wish to reset iptables, you must do so manually by using the "iptables" command.
    
    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

            private final ModelType<? extends RuleSource> rules;
    
            public ApplyRuleSource(Class<? extends RuleSource> rules) {
                this.rules = ModelType.of(rules);
            }
    
            @Override
            public void execute(MutableModelNode node) {
                node.applyToSelf(rules.getConcreteClass());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                }
    
                apply type: Rules
            '''
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasDescription('A problem occurred configuring root project')
            failure.assertHasCause('Exception thrown while executing model rule: Rules#people(ModelMap<Person>) > create(foo)')
            failure.assertHasCause('broken')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/text/template/funcs.go

    }
    
    // evalArgs formats the list of arguments into a string. It is therefore equivalent to
    //
    //	fmt.Sprint(args...)
    //
    // except that each argument is indirected (if a pointer), as required,
    // using the same rules as the default string evaluation during template
    // execution.
    func evalArgs(args []any) string {
    	ok := false
    	var s string
    	// Fast path for simple common case.
    	if len(args) == 1 {
    		s, ok = args[0].(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top