Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 331 for Profile (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

        private static final Pattern FILTER_3 = Pattern.compile("\\."); // used for split now
    
        @Override
        public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
            Activation activation = profile.getActivation();
    
            if (activation == null) {
                return false;
            }
    
            String jdk = activation.getJdk();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

        private static final Pattern FILTER_3 = Pattern.compile("\\."); // used for split now
    
        @Override
        public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
            Activation activation = profile.getActivation();
    
            if (activation == null) {
                return false;
            }
    
            String jdk = activation.getJdk();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation.go

    	}
    
    	if profile.Plugins != nil {
    		stagesToPluginSet := map[string]config.PluginSet{
    			"preEnqueue": profile.Plugins.PreEnqueue,
    			"queueSort":  profile.Plugins.QueueSort,
    			"preFilter":  profile.Plugins.PreFilter,
    			"filter":     profile.Plugins.Filter,
    			"postFilter": profile.Plugins.PostFilter,
    			"preScore":   profile.Plugins.PreScore,
    			"score":      profile.Plugins.Score,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. operator/pkg/validate/validate_values_test.go

    	tests := []struct {
    		profile  string
    		wantErrs util.Errors
    	}{
    		{
    			profile: "default",
    		},
    		{
    			profile: "demo",
    		},
    		{
    			profile: "minimal",
    		},
    		{
    			profile: "ambient",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.profile, func(t *testing.T) {
    			pf, err := helm.ReadProfileYAML(tt.profile, filepath.Join(env.IstioSrc, "manifests"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

        def "can profile a build with cc enabled"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            file("build.gradle") << """
                plugins {
                   id("java")
                }
            """
            file("src/main/java/included/Example.java") << ""
    
            when:
            configurationCacheRun(":help", "--profile")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // in the current goroutine profile: either that it should not be profiled, or
    // that a snapshot of its call stack and labels are now in the profile.
    func tryRecordGoroutineProfile(gp1 *g, pcbuf []uintptr, yield func()) {
    	if readgstatus(gp1) == _Gdead {
    		// Dead goroutines should not appear in the profile. Goroutines that
    		// start while profile collection is active will get goroutineProfiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			expectedProfile: unconfinedProfile,
    		},
    		{
    			description:     "pod seccomp profile set to unconfined returns unconfined",
    			podSc:           &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}},
    			expectedProfile: unconfinedProfile,
    		},
    		{
    			description:     "container seccomp profile set to unconfined returns unconfined",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java

     */
    package org.apache.maven.model.profile.activation;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.Locale;
    
    import org.apache.maven.model.Activation;
    import org.apache.maven.model.ActivationOS;
    import org.apache.maven.model.Profile;
    import org.apache.maven.model.building.ModelProblemCollector;
    import org.apache.maven.model.profile.ProfileActivationContext;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/runtime/cpuprof.go

    // turns it into formatted profile data. If the reader does not keep up
    // with the log, those writes will be recorded as a count of lost records.
    // The actual profile buffer is in profbuf.go.
    
    package runtime
    
    import (
    	"internal/abi"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	maxCPUProfStack = 64
    
    	// profBufWordCount is the size of the CPU profile buffer's storage for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                    && (profile.getDependencyManagement() == null
                            || profile.getDependencyManagement().getDependencies().isEmpty())
                    && profile.getDistributionManagement() == null
                    && profile.getModules().isEmpty()
                    && profile.getProperties().isEmpty()
                    && profile.getRepositories().isEmpty()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top