Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for withrules (0.25 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/successpolicy.go

    	return &SuccessPolicyApplyConfiguration{}
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/podfailurepolicy.go

    	return &PodFailurePolicyApplyConfiguration{}
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 16:39:08 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/mutatingwebhook.go

    	b.ClientConfig = value
    	return b
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingwebhook.go

    	b.ClientConfig = value
    	return b
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingwebhook.go

    	b.ClientConfig = value
    	return b
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/mutatingwebhook.go

    	b.ClientConfig = value
    	return b
    }
    
    // WithRules adds the given value to the Rules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	}
    	return err
    }
    
    func (c *ClusterRoleAggregationController) applyClusterRoles(ctx context.Context, name string, newPolicyRules []rbacv1.PolicyRule) error {
    	clusterRoleApply := rbacv1ac.ClusterRole(name).
    		WithRules(toApplyPolicyRules(newPolicyRules)...)
    
    	opts := metav1.ApplyOptions{FieldManager: "clusterrole-aggregation-controller", Force: true}
    	_, err := c.clusterRoleClient.ClusterRoles().Apply(ctx, clusterRoleApply, opts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    		ret := rbacv1ac.ClusterRole("combined")
    
    		var r []*rbacv1ac.PolicyRuleApplyConfiguration
    		for _, currRules := range rules {
    			r = append(r, toApplyPolicyRules(currRules)...)
    		}
    		ret.WithRules(r...)
    		return ret
    	}
    
    	tests := []struct {
    		name                     string
    		startingClusterRoles     []*rbacv1.ClusterRole
    		clusterRoleToSync        string
    		expectedClusterRole      *rbacv1.ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/validationrule.go

    	return &ValidationRuleApplyConfiguration{}
    }
    
    // WithRule sets the Rule field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Rule field is set to the value of the last call.
    func (b *ValidationRuleApplyConfiguration) WithRule(value string) *ValidationRuleApplyConfiguration {
    	b.Rule = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

                        attributes {
                            attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, targetJvmVersion)
                        }
                        withFiles {
                            removeAllFiles()
                            addFile("guava-$version-${jarName}.jar", "../$version-$jarName/guava-$version-${jarName}.jar")
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top