Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Imported (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

        }
    
        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>
        <groupId>different-group</groupId>
        <artifactId>imported</artifactId>
        <version>different-version</version>
    
        <dependencyManagement>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

        }
    
        def "uses dependency management section from imported POM in active profile to define defaults for main POM body dependency"() {
            given:
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
        <artifactId>imported</artifactId>
        <version>different-version</version>
    
        <dependencyManagement>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    		if pkg.err == nil {
    			continue
    		}
    
    		// Add importer information to checksum errors.
    		if sumErr := (*ImportMissingSumError)(nil); errors.As(pkg.err, &sumErr) {
    			if importer := pkg.stack; importer != nil {
    				sumErr.importer = importer.path
    				sumErr.importerVersion = importer.mod.Version
    				sumErr.importerIsTest = importer.testOf != nil
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
        /** Explicitly imported by Kotlin default. For example, `kotlin.String`. */
        DEFAULT_EXPLICIT,
    
        /** Star imported (star import) by user. */
        STAR,
    
        /** Star imported (star import) by Kotlin default. */
        DEFAULT_STAR;
    
        fun hasHigherPriorityThan(that: ImportKind): Boolean = this < that
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			expected: map[string][]string{
    				// imported
    				"known.default.svc.cluster.local": {"outbound|80||example.com"},
    				// Not imported but we include it anyway
    				"alt-known.default.svc.cluster.local": {"outbound|80||example.com"},
    			},
    			expectedGateway: map[string][]string{
    				// imported
    				"known.default.svc.cluster.local": {"outbound|80||example.com"},
    				// Not imported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      TF_ImportGraphDefOptionsSetPrefix(opts, "imported");
      TF_GraphImportGraphDef(graph, graph_def, opts, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* scalar = TF_GraphOperationByName(graph, "imported/scalar");
      TF_Operation* feed = TF_GraphOperationByName(graph, "imported/feed");
      TF_Operation* neg = TF_GraphOperationByName(graph, "imported/neg");
      ASSERT_TRUE(scalar != nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

        TF_ImportGraphDefOptions* opts, unsigned char uniquify_prefix);
    
    // Set any imported nodes with input `src_name:src_index` to have that input
    // replaced with `dst`. `src_name` refers to a node in the graph to be imported,
    // `dst` references a node already existing in the graph being imported into.
    // `src_name` is copied and has no lifetime requirements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    			Xsmclas:  XMC_DS,
    			Xsmtyp:   XTY_ER | XTY_IMP,
    		}
    
    		if ldr.SymName(x) == "__n_pthreads" {
    			// Currently, all imported symbols made by cgo_import_dynamic are
    			// syscall functions, except __n_pthreads which is a variable.
    			// TODO(aix): Find a way to detect variables imported by cgo.
    			a4.Xsmclas = XMC_RW
    		}
    
    		syms = append(syms, a4)
    
    	case TLSSym:
    		s := &XcoffSymEnt64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
            String name = type.getName();
    
            // check module node imports aliases
            // the while loop enables a check for inner classes which are not fully imported,
            // but visible as the surrounding class is imported and the inner class is public/protected static
            String pname;
            int index = name.length();
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top