Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Profile (0.13 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    	if _, ok := r[queueSortPlugin]; !ok {
    		r[queueSortPlugin] = newQueueSortPlugin
    	}
    	if _, ok := r[bindPlugin]; !ok {
    		r[bindPlugin] = newBindPlugin
    	}
    
    	if len(profile.Plugins.QueueSort.Enabled) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

            automatic inclusion of the build profile. Multiple conditions can be defined, which must
            be all satisfied to activate the profile.
          </description>
          <fields>
            <field>
              <name>activeByDefault</name>
              <version>4.0.0+</version>
              <type>boolean</type>
              <description>If set to true, this profile will be active unless another profile in this
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    changes to this folder should have a `make copy-templates` applied afterwards. Warning: unlike the `IstioOperator` profiles, these profiles cannot enable or disable certain components. As a result, users still need to ensure they install the appropriate charts to use a profile correctly. These requirements are documented in each profile. manifests/helm-profiles/demo.yaml # The demo profile enables a variety of things to try out Istio in non-production environments. # * Lower resource utilization. # *...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    			numAllNodes:  1000,
    			wantNumNodes: 420,
    		},
    		{
    			name:              "set profile percentageOfNodesToScore and nodes number more than 50",
    			profilePercentage: ptr.To[int32](40),
    			numAllNodes:       1000,
    			wantNumNodes:      400,
    		},
    		{
    			name:              "set global and profile percentageOfNodesToScore and nodes number more than 50",
    			globalPercentage:  100,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Update */
        public static final String LABELS_PROFILE_UPDATE = "{labels.profile.update}";
    
        /** The key of the message: Back */
        public static final String LABELS_PROFILE_BACK = "{labels.profile.back}";
    
        /** The key of the message: Current Password */
        public static final String LABELS_PROFILE_placeholder_old_password = "{labels.profile.placeholder_old_password}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	case "off":
    		return
    
    	case "auto":
    		// Locate PGO profiles from the main packages, and
    		// attach the profile to the main package and its
    		// dependencies.
    		// If we're building multiple main packages, they may
    		// have different profiles. We may need to split (unshare)
    		// the dependency graph so they can attach different
    		// profiles.
    		for _, p := range pkgs {
    			if p.Name != "main" {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    //	-coverprofile cover.out
    //	    Write a coverage profile to the file after all tests have passed.
    //	    Sets -cover.
    //
    //	-cpuprofile cpu.out
    //	    Write a CPU profile to the specified file before exiting.
    //	    Writes test binary as -c would.
    //
    //	-memprofile mem.out
    //	    Write an allocation profile to the file after all tests have passed.
    //	    Writes test binary as -c would.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    			newg.labels = mp.curg.labels
    		}
    		if goroutineProfile.active {
    			// A concurrent goroutine profile is running. It should include
    			// exactly the set of goroutines that were alive when the goroutine
    			// profiler first stopped the world. That does not include newg, so
    			// mark it as not needing a profile before transitioning it from
    			// _Gdead.
    			newg.goroutineProfiled.Store(goroutineProfileSatisfied)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	}
    
    	// Stop profiler of all types if already running
    	for k, v := range globalProfiler {
    		v.Stop()
    		delete(globalProfiler, k)
    	}
    
    	// Start profiling on remote servers.
    	for _, profiler := range profiles {
    		globalNotificationSys.StartProfiling(profiler)
    
    		// Start profiling locally as well.
    		prof, err := startProfiler(profiler)
    		if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	}
    
    	cxxflags := str.StringList(cgoCPPFLAGS, cgoCXXFLAGS)
    	for _, file := range gxxfiles {
    		ofile := nextOfile()
    		if err := b.gxx(a, a.Objdir, ofile, cxxflags, file); err != nil {
    			return nil, nil, err
    		}
    		outObj = append(outObj, ofile)
    	}
    
    	for _, file := range mfiles {
    		ofile := nextOfile()
    		if err := b.gcc(a, a.Objdir, ofile, cflags, file); err != nil {
    			return nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top