Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for importing (0.26 sec)

  1. pilot/pkg/networking/core/httproute_test.go

    						Number:   8080,
    						Protocol: "HTTP",
    						Name:     "foo",
    					},
    					Hosts: []string{"default/bookinfo.com", "not-default/test.com"},
    				},
    				{
    					// Wildcard egress importing from all namespaces
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	sidecarConfigWithWildcard := &config.Config{
    		Meta: config.Meta{
    			Name:             "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                Collection<String> importIds) {
            DependencyManagement depMgmt = model.getDependencyManagement();
    
            if (depMgmt == null) {
                return model;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                Collection<String> importIds) {
            DependencyManagement depMgmt = model.getDependencyManagement();
    
            if (depMgmt == null) {
                return;
            }
    
            String importing = model.getGroupId() + ':' + model.getArtifactId() + ':' + model.getVersion();
    
            importIds.add(importing);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	// Populated by (*loader).pkgTest:
    	testOnce sync.Once
    	test     *loadPkg
    
    	// Populated by postprocessing in (*loader).buildStacks:
    	stack *loadPkg // package importing this one in minimal import stack for this pkg
    }
    
    // loadPkgFlags is a set of flags tracking metadata about a package.
    type loadPkgFlags int8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val importKindFromOption = ImportKind.fromShortenOption(option)
            val importKind = matchedCallables.minOfOrNull { it.importKind } ?: importKindFromOption ?: return null
    
            val callToShorten = when {
                otherCallables.all { importKind.hasHigherPriorityThan(it.importKind) } -> {
                    when {
                        matchedCallables.isEmpty() -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # build is static and TensorFlow symbols (in Python only) are loaded into the
    # global symbol table in order to support op registration. This means that
    # projects building with Bazel and importing TensorFlow as a dependency will not
    # depend on libtensorflow_framework.so unless they opt in.
    tf_cc_shared_library(
        name = "tensorflow_framework",
        additional_linker_inputs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    }
    
    func linkFile(runcmd runCmd, goname string, importcfg string, ldflags []string) (err error) {
    	if importcfg == "" {
    		importcfg = stdlibImportcfgFile()
    	}
    	pfile := strings.Replace(goname, ".go", ".o", -1)
    	cmd := []string{goTool, "tool", "link", "-w", "-o", "a.exe", "-importcfg=" + importcfg}
    	if *linkshared {
    		cmd = append(cmd, "-linkshared", "-installsuffix=dynlink")
    	}
    	if ldflags != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/time/format.go

    		//
    		// - use Location(loc.name), which is not technically valid syntax
    		// - use LoadLocation(loc.name), which will cause a syntax error when
    		// embedded and also would require us to escape the string without
    		// importing fmt or strconv
    		// - try to use FixedZone, which would also require escaping the name
    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            dep.selector == moduleId('group-two', 'artifact-two', '1.5')
            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "uses importing pom dependency management over imported pom definition with same group ID and artifact ID "() {
            given:
    
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:bom_import]]
    === [5.0] BOM import
    
    Gradle now provides support for importing bill of materials (BOM) files, which are effectively POM files that use `<dependencyManagement>` sections to control the versions of direct and transitive dependencies. All you need to do is declare the POM as a `platform` dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top