Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 433 for Profiles2 (0.14 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java

         */
        List<String> getActiveProfileIds();
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @return The identifiers of those profiles to deactivate, never {@code null}.
         */
        List<String> getInactiveProfileIds();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivationContext.java

         */
        List<String> getActiveProfileIds();
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @return The identifiers of those profiles to deactivate, never {@code null}.
         */
        List<String> getInactiveProfileIds();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         *         not refer to a known model or has no active profiles.
         */
        @Nonnull
        List<Profile> getActivePomProfiles(@Nonnull String modelId);
    
        /**
         * Gets the external profiles that were active during model building. External profiles are those that were
         * contributed by {@link ModelBuilderRequest#getProfiles()}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. operator/pkg/helm/renderer.go

    	profiles := map[string]bool{}
    	f := manifests.BuiltinOrDir(chartsDir)
    	dir, err := fs.ReadDir(f, profilesRoot)
    	if err != nil {
    		return nil, err
    	}
    	for _, f := range dir {
    		trimmedString := strings.TrimSuffix(f.Name(), ".yaml")
    		if f.Name() != trimmedString {
    			profiles[trimmedString] = true
    		}
    	}
    	return profiles, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    )
    
    // ScaleProfiles updates the units in a set of profiles to make them
    // compatible. It scales the profiles to the smallest unit to preserve
    // data.
    func ScaleProfiles(profiles []*profile.Profile) error {
    	if len(profiles) == 0 {
    		return nil
    	}
    	periodTypes := make([]*profile.ValueType, 0, len(profiles))
    	for _, p := range profiles {
    		if p.PeriodType != nil {
    			periodTypes = append(periodTypes, p.PeriodType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/v1/defaults.go

    		obj.Parallelism = ptr.To[int32](16)
    	}
    
    	if len(obj.Profiles) == 0 {
    		obj.Profiles = append(obj.Profiles, configv1.KubeSchedulerProfile{})
    	}
    	// Only apply a default scheduler name when there is a single profile.
    	// Validation will ensure that every profile has a non-empty unique name.
    	if len(obj.Profiles) == 1 && obj.Profiles[0].SchedulerName == nil {
    		obj.Profiles[0].SchedulerName = ptr.To(v1.DefaultSchedulerName)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

         *         not refer to a known model.
         */
        List<Profile> getActivePomProfiles(String modelId);
    
        /**
         * Gets the external profiles that were active during model building. External profiles are those that were
         * contributed by {@link ModelBuildingRequest#getProfiles()}.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the external profiles that should be considered for model building.
         *
         * @return The external profiles that should be considered for model building, never {@code null}.
         */
        List<Profile> getProfiles();
    
        /**
         * Sets the external profiles that should be considered for model building.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/scheme/scheme_test.go

    			data: []byte(`
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration
    profiles:
    - pluginConfig:
      - name: DefaultPreemption
        args:
          apiVersion: kubescheduler.config.k8s.io/v1
          kind: InterPodAffinityArgs
    `),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/profile-module-inheritance/pom.xml

      <artifactId>construct</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <profiles>
        <profile>
          <id>dist</id>
          <modules>
            <module>maven-inherit-plugin</module>
            <module>maven-pax-plugin</module>
          </modules>
        </profile>
        </profiles>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 385 bytes
    - Viewed (0)
Back to top