Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for rulesv4 (0.15 sec)

  1. cmd/kube-proxy/app/server_linux.go

    		logger.Info("Defaulting to no-op detect-local")
    	}
    
    	return localDetectors
    }
    
    // platformCleanup removes stale kube-proxy rules that can be safely removed. If
    // cleanupAndExit is true, it will attempt to remove rules from all known kube-proxy
    // modes. If it is false, it will only remove rules that are definitely not in use by the
    // currently-configured mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

                binding.onUnbind(node);
            }
        }
    
        /**
         * Returns the set of rules with the given target as their subject.
         */
        public Collection<RuleBinder> getRulesWithSubject(NodeAtState target) {
            return rulesBySubject.get(target);
        }
    
        /**
         * Returns the set of rules with the given input.
         */
        public Collection<RuleBinder> getRulesWithInput(NodeAtState input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	{name: "decompose user", fn: decomposeUser, required: true},
    	{name: "pre-opt deadcode", fn: deadcode},
    	{name: "opt", fn: opt, required: true},               // NB: some generic rules know the name of the opt pass. TODO: split required rules and optimizing rules
    	{name: "zero arg cse", fn: zcse, required: true},     // required to merge OpSB values
    	{name: "opt deadcode", fn: deadcode, required: true}, // remove any blocks orphaned during opt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K 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/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            }
            ImmutableList.Builder<ExcludeMetadata> rules = ImmutableList.builderWithExpectedSize(excludes.size());
            for (Exclude exclude : excludes) {
                Set<String> ruleConfigurations = exclude.getConfigurations();
                if (include(ruleConfigurations, configurations)) {
                    rules.add(exclude);
                }
            }
            return rules.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. samples/addons/prometheus.yaml

        global:
          evaluation_interval: 1m
          scrape_interval: 15s
          scrape_timeout: 10s
        rule_files:
        - /etc/config/recording_rules.yml
        - /etc/config/alerting_rules.yml
        - /etc/config/rules
        - /etc/config/alerts
        scrape_configs:
        - job_name: prometheus
          static_configs:
          - targets:
            - localhost:9090
        - bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pkg/apis/batch/v1/defaults_test.go

    			original: &batchv1.Job{
    				Spec: batchv1.JobSpec{
    					Template: v1.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{Labels: defaultLabels},
    					},
    					PodFailurePolicy: &batchv1.PodFailurePolicy{
    						Rules: []batchv1.PodFailurePolicyRule{
    							{
    								Action: batchv1.PodFailurePolicyActionFailJob,
    								OnPodConditions: []batchv1.PodFailurePolicyOnPodConditionsPattern{
    									{
    										Type:   v1.DisruptionTarget,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. hack/golangci.yaml

          msg: should not be used because managedFields was removed
      gocritic:
        enabled-checks:
          - equalFold
          - boolExprSimplify
      revive:
        # Only these rules are enabled.
        rules:
          - name: exported
            arguments:
            - disableStutteringCheck
      staticcheck:
        checks:
          - "all"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	// needed, use GetUID.
    	GetName() string
    	// GetClientConfig gets the webhook ClientConfig field.
    	GetClientConfig() v1.WebhookClientConfig
    	// GetRules gets the webhook Rules field.
    	GetRules() []v1.RuleWithOperations
    	// GetFailurePolicy gets the webhook FailurePolicy field.
    	GetFailurePolicy() *v1.FailurePolicyType
    	// GetMatchPolicy gets the webhook MatchPolicy field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. 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)
Back to top