Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for propFilename (0.19 sec)

  1. pkg/scheduler/profile/profile.go

    	if len(f.ProfileName()) == 0 {
    		return errors.New("scheduler name is needed")
    	}
    	if cfg.Plugins == nil {
    		return fmt.Errorf("plugins required for profile with scheduler name %q", f.ProfileName())
    	}
    	if v.m[f.ProfileName()] != nil {
    		return fmt.Errorf("duplicate profile with scheduler name %q", f.ProfileName())
    	}
    
    	queueSort := f.ListPlugins().QueueSort.Enabled[0].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 06 01:11:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

                }
            }
        }
    }
    
    fun ProjectSettings.configureCopyright() {
        copyright {
            useDefault = GradleCopyright.profileName
            profiles {
                create(GradleCopyright.profileName) {
                    notice = GradleCopyright.notice
                    keyword = GradleCopyright.keyword
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 26 15:42:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. pkg/security/apparmor/helpers.go

    		// Note: an invalid empty localhost profile will be rejected by kubelet admission.
    		profileName := strings.TrimPrefix(val, v1.DeprecatedAppArmorBetaProfileNamePrefix)
    		return &v1.AppArmorProfile{
    			Type:             v1.AppArmorProfileTypeLocalhost,
    			LocalhostProfile: &profileName,
    		}
    
    	default:
    		// Invalid annotation.
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tests/integration/operator/switch_cr_test.go

    	}
    }
    
    func installWithCRFile(t framework.TestContext, ctx resource.Context, cs cluster.Cluster,
    	istioCtl istioctl.Instance, profileName string, revision string,
    ) {
    	scopes.Framework.Infof(fmt.Sprintf("=== install istio with profile: %s===\n", profileName))
    	metadataYAML := `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    package test
    
    import (
    	"bufio"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"regexp"
    	"testing"
    )
    
    type devirtualization struct {
    	pos    string
    	callee string
    }
    
    const profFileName = "devirt.pprof"
    const preProfFileName = "devirt.pprof.node_map"
    
    // testPGODevirtualize tests that specific PGO devirtualize rewrites are performed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    	// Parse MultiPoint separately since they are not returned by f.getExtensionPoints()
    	find(&plugins.MultiPoint)
    
    	return pgSet
    }
    
    // ProfileName returns the profile name associated to this framework.
    func (f *frameworkImpl) ProfileName() string {
    	return f.profileName
    }
    
    // PercentageOfNodesToScore returns percentageOfNodesToScore associated to a profile.
    func (f *frameworkImpl) PercentageOfNodesToScore() *int32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. tests/integration/operator/uninstall_test.go

    				}
    			})
    		})
    }
    
    func applyIop(t framework.TestContext, ctx resource.Context, cs cluster.Cluster, profileName string, revision string) {
    	scopes.Framework.Infof(fmt.Sprintf("=== install istio with profile: %s===\n", profileName))
    	metadataYAML := `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/framework/framework_helpers.go

    // NewFramework creates a Framework from the register functions and options.
    func NewFramework(ctx context.Context, fns []RegisterPluginFunc, profileName string, opts ...runtime.Option) (framework.Framework, error) {
    	registry := runtime.Registry{}
    	profile := &schedulerapi.KubeSchedulerProfile{
    		SchedulerName: profileName,
    		Plugins:       &schedulerapi.Plugins{},
    	}
    	for _, f := range fns {
    		f(&registry, profile)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. operator/pkg/helm/renderer.go

    func builtinProfileToFilename(name string) string {
    	if name == "" {
    		return DefaultProfileFilename
    	}
    	return name + ".yaml"
    }
    
    func LoadValues(profileName string, chartsDir string) (string, error) {
    	path := strings.Join([]string{profilesRoot, builtinProfileToFilename(profileName)}, "/")
    	by, err := fs.ReadFile(manifests.BuiltinOrDir(chartsDir), path)
    	if err != nil {
    		return "", err
    	}
    	return string(by), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/helpers_linux_test.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    )
    
    func seccompLocalhostRef(profileName string) string {
    	return filepath.Join(fakeSeccompProfileRoot, profileName)
    }
    
    func TestMilliCPUToQuota(t *testing.T) {
    	for _, testCase := range []struct {
    		msg      string
    		input    int64
    		expected int64
    		period   uint64
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top