Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 92 for isPath (0.11 sec)

  1. src/go/internal/gccgoimporter/importer.go

    }
    
    // Locate the file from which to read export data.
    // This is intended to replicate the logic in gofrontend.
    func findExportFile(searchpaths []string, pkgpath string) (string, error) {
    	for _, spath := range searchpaths {
    		pkgfullpath := filepath.Join(spath, pkgpath)
    		pkgdir, name := filepath.Split(pkgfullpath)
    
    		for _, filepath := range [...]string{
    			pkgfullpath,
    			pkgfullpath + ".gox",
    			pkgdir + "lib" + name + ".so",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest_shared_test.go

    }
    
    // fakeApplyManifest runs istioctl install.
    func fakeApplyManifest(inFile, flags string, chartSource chartSourceType) (*ObjectSet, error) {
    	inPath := filepath.Join(testDataDir, "input", inFile+".yaml")
    	manifest, err := runManifestCommand("install", []string{inPath}, flags, chartSource, nil)
    	if err != nil {
    		return nil, fmt.Errorf("error %s: %s", err, manifest)
    	}
    	return NewObjectSet(getAllIstioObjects()), nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    	if err != nil {
    		errorf("cannot read %d bytes of stringData and declData: %s", sLen+dLen, err)
    	}
    	stringData := data[:sLen]
    	declData := data[sLen:]
    
    	p := iimporter{
    		exportVersion: version,
    		ipath:         path,
    		version:       int(version),
    
    		stringData:  stringData,
    		stringCache: make(map[uint64]string),
    		pkgCache:    make(map[uint64]*types.Package),
    
    		declData: declData,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate.go

    	var om map[string]*object.K8sObject
    	var objects object.K8sObjects
    
    	for inPath, v := range t.KubernetesMapping {
    		inPath, err := renderFeatureComponentPathTemplate(inPath, componentName)
    		if err != nil {
    			return "", err
    		}
    		renderedInPath := strings.Replace(inPath, "gressGateways.", "gressGateways."+fmt.Sprint(index)+".", 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

            get() = psi.annotations.map { it.nameReferenceElement?.referenceName }
    
        val hasAnnotations: Boolean
            get() = psi.annotations.isNotEmpty()
    
        override val isData: Boolean get() = withValidityAssertion { false }
        override val isInline: Boolean get() = withValidityAssertion { false }
        override val isFun: Boolean get() = withValidityAssertion { false }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            return staticLibrary("${module}/build/lib/main/${variantContext.asPath}${module}").file
        }
    
        @Override
        Map<String, String> getVariantFileInformation(String linkage, String module, String variantModuleNameWithVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                plugins {
                    id 'java'
                }
    
                compileJava {
                    options.compilerArgs = ['--module-source-path', files('src/main/java', 'src/main/moreJava').asPath]
                }
            '''
            file("src/main/java/example/module-info.java") << '''
            module example {
                exports io.example;
                requires another;
            }
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

                tasks.register("run", Exec) {
                    dependsOn(compileJava)
                    executable = ${Jvm.canonicalName}.current().javaExecutable
                    args '-cp', project.layout.files(compileJava).asPath, 'Main' ${formatArgument args["extraArg"], { ", '$it'" }}
    
                    ${formatStreamArgument args, "standardInput"}
                    ${formatStreamArgument args, "standardOutput"}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/walk.go

    		return typecheck.LookupRuntime(name, t.Elem(), t.Elem())
    	}
    	base.Fatalf("chanfn %d", n)
    	return nil
    }
    
    func mapfn(name string, t *types.Type, isfat bool) ir.Node {
    	if !t.IsMap() {
    		base.Fatalf("mapfn %v", t)
    	}
    	if mapfast(t) == mapslow || isfat {
    		return typecheck.LookupRuntime(name, t.Key(), t.Elem(), t.Key(), t.Elem())
    	}
    	return typecheck.LookupRuntime(name, t.Key(), t.Elem(), t.Elem())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

            fixture.workActionThatCreatesFiles.action += """
                execOperations.exec {
                    executable org.gradle.internal.jvm.Jvm.current().getJavaExecutable()
                    args '-cp', parameters.classpath.asPath, 'org.gradle.TestMain', parameters.projectDir, parameters.testFile
                }
            """
            fixture.withWorkActionClassInBuildScript()
    
            file('src/main/java/org/gradle/TestMain.java') << testMainSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top