Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 539 for cgofiles (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            <dependency>
                <groupId>\${groupId.prop}</groupId>
                <artifactId>\${artifactId.prop}</artifactId>
                <version>\${version.prop}</version>
            </dependency>
        </dependencies>
        <profiles>
            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <properties>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. operator/scripts/update_version.sh

    function update_version() {
        local RELEASE_DIR="$1"
        local DOCKER_HUB="$2"
        local DOCKER_TAG="$3"
        # Update version string in profiles.
        sed -i "s|hub: gcr.io/istio-release|hub: ${DOCKER_HUB}|g" "${RELEASE_DIR}"/profiles/*.yaml
        sed -i "s|tag: .*-latest-daily|tag: ${DOCKER_TAG}|g"      "${RELEASE_DIR}"/profiles/*.yaml
        # Update version string in global.yaml.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 14 23:24:30 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}
    
    	if len(profiles) == 0 {
    		return nil, nil, false, 0, nil
    	}
    
    	p, msrc, err := combineProfiles(profiles, msrcs)
    	if err != nil {
    		return nil, nil, false, 0, err
    	}
    	return p, msrc, save, len(profiles), nil
    }
    
    func combineProfiles(profiles []*profile.Profile, msrcs []plugin.MappingSources) (*profile.Profile, plugin.MappingSources, error) {
    	// Merge profiles.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/conversion.go

    // external (versioned) types using a scheme.
    func convertToExternalPluginConfigArgs(out *v1.KubeSchedulerConfiguration) error {
    	scheme := GetPluginArgConversionScheme()
    	for i := range out.Profiles {
    		for j := range out.Profiles[i].PluginConfig {
    			args := out.Profiles[i].PluginConfig[j].Args
    			if args.Object == nil {
    				continue
    			}
    			if _, isUnknown := args.Object.(*runtime.Unknown); isUnknown {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:47:48 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. manifests/helm-profiles/README.md

    # Helm Profiles
    
    This folder provides a variety of "profiles" for helm installation.
    While a user can just explicitly pass this with `--values/-f`.
    
    However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts.
    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java

            if (!errors.isEmpty()) {
                throw errors.get(0);
            }
    
            return profiles;
        }
    
        /* (non-Javadoc)
         * @see org.apache.maven.profiles.ProfileManager#addProfiles(java.util.List)
         */
        public void addProfiles(List<Profile> profiles) {
            for (Profile profile1 : profiles) {
                addProfile(profile1);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof.go

    		profiles = append(profiles, profileEntry{
    			Name:  p.Name(),
    			Href:  p.Name(),
    			Desc:  profileDescriptions[p.Name()],
    			Count: p.Count(),
    		})
    	}
    
    	// Adding other profiles exposed from within this package
    	for _, p := range []string{"cmdline", "profile", "trace"} {
    		profiles = append(profiles, profileEntry{
    			Name: p,
    			Href: p,
    			Desc: profileDescriptions[p],
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof.go

    	lockProfiles()
    	defer unlockProfiles()
    	return profiles.m[name]
    }
    
    // Profiles returns a slice of all the known profiles, sorted by name.
    func Profiles() []*Profile {
    	lockProfiles()
    	defer unlockProfiles()
    
    	all := make([]*Profile, 0, len(profiles.m))
    	for _, p := range profiles.m {
    		all = append(all, p)
    	}
    
    	slices.SortFunc(all, func(a, b *Profile) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. manifests/charts/base/README.md

    ```
    
    ### 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
    - 1.3K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler.go

    	// Close this to shut down the scheduler.
    	StopEverything <-chan struct{}
    
    	// SchedulingQueue holds pods to be scheduled
    	SchedulingQueue internalqueue.SchedulingQueue
    
    	// Profiles are the scheduling profiles.
    	Profiles profile.Map
    
    	client clientset.Interface
    
    	nodeInfoSnapshot *internalcache.Snapshot
    
    	percentageOfNodesToScore int32
    
    	nextStartNodeIndex int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top