Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for newProfile (0.43 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. src/runtime/pprof/pprof.go

    	profiles.mu.Unlock()
    }
    
    // NewProfile creates a new profile with the given name.
    // If a profile with that name already exists, NewProfile panics.
    // The convention is to use a 'import/path.' prefix to create
    // separate name spaces for each package.
    // For compatibility with various tools that read pprof data,
    // profile names should not contain spaces.
    func NewProfile(name string) *Profile {
    	lockProfiles()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    // Issue 18836.
    func TestEmptyCallStack(t *testing.T) {
    	name := fmt.Sprintf("test18836_%d", emptyCallStackTestRun)
    	emptyCallStackTestRun++
    
    	t.Parallel()
    	var buf strings.Builder
    	p := NewProfile(name)
    
    	p.Add("foo", 47674)
    	p.WriteTo(&buf, 1)
    	p.Remove("foo")
    	got := buf.String()
    	prefix := name + " profile: total 1\n"
    	if !strings.HasPrefix(got, prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K 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)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Profile).WriteTo", Method, 0},
    		{"Do", Func, 9},
    		{"ForLabels", Func, 9},
    		{"Label", Func, 9},
    		{"LabelSet", Type, 9},
    		{"Labels", Func, 9},
    		{"Lookup", Func, 0},
    		{"NewProfile", Func, 0},
    		{"Profile", Type, 0},
    		{"Profiles", Func, 0},
    		{"SetGoroutineLabels", Func, 9},
    		{"StartCPUProfile", Func, 0},
    		{"StopCPUProfile", Func, 0},
    		{"WithLabels", Func, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top