Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testprofile (0.3 sec)

  1. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sharedResources/maven_home/m2_home/conf/settings.xml

    <settings>
        <profiles>
            <profile>
              <id>testprofile</id>
              <properties>
                <junit-version>4.13</junit-version>
                <compiler-version>3.7.0</compiler-version>
              </properties>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>testprofile</activeProfile>
        </activeProfiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 366 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_profile.txt

    Bryan C. Mills <******@****.***> 1659030659 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 637 bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/TaskOptionsSpec.groovy

                        @Optional
                        @Input
                        abstract Property<String> getProfile()
    
                        @TaskAction
                        void run() {
                            if (getProfile().isPresent()) {
                                logger.lifecycle(getName() + "profile=" + getProfile().get())
                            }
                        }
                    }
                    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/net/URLUtilTest.java

            assertEquals("zip", URLUtil.toCanonicalProtocol("zip"));
            assertEquals("file", URLUtil.toCanonicalProtocol("file"));
        }
    
        /**
         * @throws Exception
         */
        public void testToFile() throws Exception {
            final File file = new File("Program Files/hoge.txt");
            final URL url = file.toURI().toURL();
            assertEquals(file.getAbsoluteFile(), URLUtil.toFile(url));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/security/apparmor/helpers_test.go

    			}
    			if test.podProfile != nil {
    				pod.Spec.SecurityContext = &v1.PodSecurityContext{
    					AppArmorProfile: test.podProfile.DeepCopy(),
    				}
    			}
    
    			actual := GetProfile(&pod, &container)
    			assert.Equal(t, test.expectedProfile, actual)
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. pkg/security/apparmor/helpers.go

    			return value != v1.DeprecatedAppArmorBetaProfileNameUnconfined
    		}
    	}
    	return false
    }
    
    // GetProfileName returns the name of the profile to use with the container.
    func GetProfile(pod *v1.Pod, container *v1.Container) *v1.AppArmorProfile {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.AppArmorFields) {
    		return getProfileFromPodAnnotations(pod.Annotations, container.Name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pkg/security/apparmor/validate.go

    		return v.validateHostErr
    	}
    
    	var retErr error
    	podutil.VisitContainers(&pod.Spec, podutil.AllContainers, func(container *v1.Container, containerType podutil.ContainerType) bool {
    		profile := GetProfile(pod, container)
    		if profile == nil {
    			return true
    		}
    
    		// TODO(#64841): This would ideally be part of validation.ValidateAppArmorProfileFormat, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/pprof/pprof.go

    	}
    	fmt.Fprintln(os.Stderr, "Fetching profile over HTTP from", sourceURL)
    	if duration > 0 {
    		fmt.Fprintf(os.Stderr, "Please wait... (%v)\n", duration)
    	}
    	p, err := getProfile(sourceURL, timeout)
    	return p, sourceURL, err
    }
    
    func getProfile(source string, timeout time.Duration) (*profile.Profile, error) {
    	url, err := url.Parse(source)
    	if err != nil {
    		return nil, err
    	}
    
    	var tlsConfig *tls.Config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top