Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for isPath (0.3 sec)

  1. operator/pkg/helm/fs_renderer_test.go

    )
    
    func TestRenderManifest(t *testing.T) {
    	tests := []struct {
    		desc                  string
    		inValues              string
    		inChart               chart.Chart
    		startRender           bool
    		inPath                string
    		objFileTemplateReader Renderer
    		wantResult            string
    		wantErr               error
    	}{
    		{
    			desc:                  "not-started",
    			inValues:              "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 24 21:09:19 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/profile-dump_test.go

    	installPackagePathRegex := regexp.MustCompile("  installPackagePath: .*")
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			inPath := filepath.Join(testDataDir, "input", tt.desc+".yaml")
    			outPath := filepath.Join(testDataDir, "output", tt.desc+".yaml")
    
    			got, err := runProfileDump(inPath, tt.configPath, snapshotCharts, "")
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 11:44:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    def testFile = file("${'$'}buildDir/${'$'}name")
                    executable = Jvm.current().getJavaExecutable()
                    args '-cp', sourceSets.main.runtimeClasspath.asPath, 'org.gradle.TestMain', projectDir, testFile
                    doLast {
                        assert testFile.exists()
                    }
                    assert delegate instanceof ExtensionAware
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/search.go

    	ctx, span := trace.StartSpan(ctx, "modload.matchPackages")
    	defer span.Done()
    
    	m.Pkgs = []string{}
    
    	isMatch := func(string) bool { return true }
    	treeCanMatch := func(string) bool { return true }
    	if !m.IsMeta() {
    		isMatch = pkgpattern.MatchPattern(m.Pattern())
    		treeCanMatch = pkgpattern.TreeCanMatchPattern(m.Pattern())
    	}
    
    	var mu sync.Mutex
    	have := map[string]bool{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    	}
    
    	var (
    		isMatch       bool
    		matchResource schema.GroupVersionResource
    		matchKind     schema.GroupVersionKind
    		matchErr      error
    	)
    	if len(matchResources.ResourceRules) == 0 {
    		isMatch = true
    		matchKind = attr.GetKind()
    		matchResource = attr.GetResource()
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/gccgoinstallation.go

    	for _, lpath := range inst.LibPaths {
    		spath := filepath.Join(lpath, "go", inst.GccVersion)
    		fi, err := os.Stat(spath)
    		if err != nil || !fi.IsDir() {
    			continue
    		}
    		paths = append(paths, spath)
    
    		spath = filepath.Join(spath, inst.TargetTriple)
    		fi, err = os.Stat(spath)
    		if err != nil || !fi.IsDir() {
    			continue
    		}
    		paths = append(paths, spath)
    	}
    
    	paths = append(paths, inst.LibPaths...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. operator/pkg/translate/yaml_tree.go

    		return "", err
    	}
    	outTree := make(map[string]any)
    	if err := yaml.Unmarshal([]byte(outTreeStr), &outTree); err != nil {
    		return "", err
    	}
    
    	for inPath, translation := range translations {
    		path := util.PathFromString(inPath)
    		node, found, err := tpath.Find(inTree, path)
    		if err != nil {
    			return "", err
    		}
    		if !found {
    			continue
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

            return new HashMap<>();
        }
    
        ArchitectureSpecificVisualCpp buildDescriptor(VersionNumber compilerVersion, File basePath, File vsPath) {
            File commonTools = new File(vsPath, PATH_COMMONTOOLS);
            File commonIde = new File(vsPath, PATH_COMMONIDE);
            List<File> paths = Lists.newArrayList(commonTools, commonIde);
            File crossCompilePath = getCrossCompilePath(basePath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/covdata/metamerge.go

    		goarch: cdr.Goarch(),
    	}
    	mm.astate.Merge(state)
    }
    
    func copyMetaDataFile(inpath, outpath string) {
    	inf, err := os.Open(inpath)
    	if err != nil {
    		fatal("opening input meta-data file %s: %v", inpath, err)
    	}
    	defer inf.Close()
    
    	fi, err := inf.Stat()
    	if err != nil {
    		fatal("accessing input meta-data file %s: %v", inpath, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ant/useExternalAntTaskWithConfig/groovy/build.gradle

    // tag::use-classpath[]
    tasks.register('check') {
        doLast {
            ant.taskdef(name: 'pmd',
                        classname: 'net.sourceforge.pmd.ant.PMDTask',
                        classpath: configurations.pmd.asPath)
            ant.pmd(shortFilenames: 'true',
                    failonruleviolation: 'true',
                    rulesetfiles: file('pmd-rules.xml').toURI().toString()) {
                formatter(type: 'text', toConsole: 'true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 697 bytes
    - Viewed (0)
Back to top