Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for newProfile (0.15 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java

        void testName() {
            Profile profile = newProfile(ActivationOS.newBuilder().name("windows"));
    
            assertActivation(false, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64")));
            assertActivation(true, profile, newContext(null, newProperties("windows", "6.5.0-1014-aws", "aarch64")));
        }
    
        @Test
        void testNegatedName() {
            Profile profile = newProfile(ActivationOS.newBuilder().name("!windows"));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java

            assertActivation(true, profile, newContext(null, newProperties("prop", "value")));
    
            assertActivation(false, profile, newContext(null, newProperties("prop", "other")));
    
            assertActivation(false, profile, newContext(null, newProperties("other", "")));
        }
    
        @Test
        void testWithNegatedValue_UserProperty() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/profile/DefaultProfileSelectorTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@link DefaultProfileSelector}.
     */
    public class DefaultProfileSelectorTest {
        private Profile newProfile(String id) {
            Activation activation = new Activation();
            Profile profile = new Profile();
            profile.setId(id);
            profile.setActivation(activation);
            return profile;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. pkg/scheduler/profile/profile.go

    )
    
    // RecorderFactory builds an EventRecorder for a given scheduler name.
    type RecorderFactory func(string) events.EventRecorder
    
    // newProfile builds a Profile for the given configuration.
    func newProfile(ctx context.Context, cfg config.KubeSchedulerProfile, r frameworkruntime.Registry, recorderFact RecorderFactory,
    	opts ...frameworkruntime.Option) (framework.Framework, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 06 01:11:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

        @Override
        @BeforeEach
        void setUp() throws Exception {
            activator = new JdkVersionProfileActivator();
        }
    
        private Profile newProfile(String jdkVersion) {
            Activation a = Activation.newBuilder().jdk(jdkVersion).build();
    
            Profile p = Profile.newBuilder().activation(a).build();
    
            return p;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/FileProfileActivatorTest.java

            return newProfile(activationFile);
        }
    
        private Profile newMissingProfile(String filePath) {
            ActivationFile activationFile =
                    ActivationFile.newBuilder().missing(filePath).build();
            return newProfile(activationFile);
        }
    
        private Profile newProfile(ActivationFile activationFile) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/testonly/user-profile.psm1

    <#
    .Synopsis
       Rough PS functions to create new user profiles
    .DESCRIPTION
       Call the Create-NewProfile function directly to create a new profile
    .EXAMPLE
       Create-NewProfile -Username 'testUser1' -Password 'testUser1'
    .NOTES
       Created by: Josh Rickard (@MS_dministrator) and Thom Schumacher (@driberif)
       Forked by: @crshnbrn66, then @pjh (2018-11-08). See
         https://gist.github.com/pjh/9753cd14400f4e3d4567f4553ba75f1d/revisions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  8. pkg/auth/authorizer/abac/abac.go

    }
    
    // PolicyList is simply a slice of Policy structs.
    type PolicyList []*abac.Policy
    
    // NewFromFile attempts to create a policy list from the given file.
    //
    // TODO: Have policies be created via an API call and stored in REST storage.
    func NewFromFile(path string) (PolicyList, error) {
    	// File format is one map per line.  This allows easy concatenation of files,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 03:11:30 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authorizer/config.go

    			r.nodeAuthorizer = node.NewAuthorizer(graph, nodeidentifier.NewDefaultNodeIdentifier(), bootstrappolicy.NodeRules())
    
    		case authzconfig.AuthorizerType(modes.ModeABAC):
    			var err error
    			r.abacAuthorizer, err = abac.NewFromFile(config.PolicyFile)
    			if err != nil {
    				return nil, nil, err
    			}
    		case authzconfig.AuthorizerType(modes.ModeRBAC):
    			r.rbacAuthorizer = rbac.New(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top