Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 433 for Profiles2 (0.21 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. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java

         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
         * @param profiles The (read-only) list of profiles whose values should be injected, must not be <code>null</code>.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/v1/defaults_test.go

    				PodMaxBackoffSeconds:     ptr.To[int64](10),
    				Profiles: []configv1.KubeSchedulerProfile{
    					{
    						SchedulerName: ptr.To("default-scheduler"),
    						Plugins:       getDefaultPlugins(),
    						PluginConfig:  pluginConfigs},
    				},
    			},
    		},
    		{
    			name: "two profiles",
    			config: &configv1.KubeSchedulerConfiguration{
    				Parallelism: ptr.To[int32](16),
    				Profiles: []configv1.KubeSchedulerProfile{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Properties;
    
    import org.apache.maven.model.Profile;
    import org.apache.maven.profiles.activation.ProfileActivationException;
    
    /**
     * ProfileManager
     */
    @Deprecated
    public interface ProfileManager {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/README.md

    helm show values istio/istio-cni
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml

      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-2309</name>
      <description>
        Test that profiles are injected in declaration order, with the last profile being the most dominant.
      </description>
    
      <profiles>
        <!-- NOTE: Using intentionally more than two profiles to prevent random test success -->
        <profile>
          <id>pom-a</id>
          <properties>
            <pomProperty>a</pomProperty>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/managed-profile-dependency/sub/pom.xml

      <artifactId>child</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4034</name>
      <description>
        Verify that dependencies defined in profiles are subject to the dependency management of the parent.
      </description>
    
      <profiles>
        <profile>
          <id>maven-core-it</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/invalid-profile-ids.xml

    under the License.
    -->
    
    <project>
        <modelVersion>4.0.0</modelVersion>
        <artifactId>aid</artifactId>
        <groupId>gid</groupId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <profiles>
            <profile>
                <id>+invalid-id</id>
            </profile>
            <profile>
                <id>-invalid-id</id>
            </profile>
            <profile>
                <id>!invalid-id</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 26 17:05:25 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/options_test.go

    		t.Fatal(err)
    	}
    
    	// multiple profiles config
    	multiProfilesConfig := filepath.Join(tmpDir, "multi-profiles.yaml")
    	if err := os.WriteFile(multiProfilesConfig, []byte(fmt.Sprintf(`
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration
    clientConnection:
      kubeconfig: '%s'
    profiles:
    - schedulerName: "foo-profile"
      plugins:
        reserve:
          enabled:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/groovy/build.gradle

    }
    
    tasks.bootRun {
        mainClass = 'com.example.demo.Demo'
        args '--spring.profiles.active=demo'
    }
    // end::accessors[]
    
    // tag::lazy[]
    tasks.named('bootJar') {
        archiveFileName = 'app.jar'
        mainClass = 'com.example.demo.Demo'
    }
    
    tasks.named('bootRun') {
        mainClass = 'com.example.demo.Demo'
        args '--spring.profiles.active=demo'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 664 bytes
    - Viewed (0)
Back to top