Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,964 for importing (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                details == "File \'${file('missing.toml').absolutePath}\' doesn\'t exist"
                solutions == [ 'Make sure that the catalog file \'missing.toml\' exists before importing it' ]
            }
        }
    
        def "can use nested versions, libraries and bundles"() {
            tomlFile << """
    [versions]
    commons-lib = "1.0"
    
    [libraries]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

        /**
         * Returns a [KaScopeContext] formed by all imports in the [KtFile].
         *
         * By default, this will also include default importing scopes, which can be filtered by [KaScopeKind]
         */
        public fun KtFile.getImportingScopeContext(): KaScopeContext =
            withValidityAssertion { analysisSession.scopeProvider.getImportingScopeContext(this) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        if (import_saved_model_object_graph) {
          saved_model_version = 2;
        } else {
          saved_model_version = 1;
        }
        if (input_mlir)
          module = tensorflow::errors::InvalidArgument(
              "Importing saved model should not have input_mlir set");
    
        tags = absl::StrSplit(saved_model_tags, ',');
        std::vector<std::string> exported_names_vector =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. src/image/image_test.go

    		switch tc := tc.(type) {
    		// Most of the concrete image types in the testCases implement the
    		// draw.RGBA64Image interface: they have a SetRGBA64 method. We use an
    		// interface literal here, instead of importing "image/draw", to avoid
    		// an import cycle.
    		//
    		// The YCbCr and NYCbCrA types are special-cased. Chroma subsampling
    		// means that setting one pixel can modify neighboring pixels. They
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/MoreObjects.java

       *
       * <p>To find the first non-null element in an iterable, use {@code Iterables.find(iterable,
       * Predicates.notNull())}. For varargs, use {@code Iterables.find(Arrays.asList(a, b, c, ...),
       * Predicates.notNull())}, static importing as necessary.
       *
       * <p><b>Note:</b> if {@code first} is represented as an {@link Optional}, this can be
       * accomplished with {@link Optional#or(Object) first.or(second)}. That approach also allows for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        private TestFile setupSerializableConsumerInterface() {
            // declaring in top-level package, so that importing at usage site is not required.
            file("buildSrc/src/main/java/CustomSerializableConsumer.java") << """
                import java.util.function.Consumer;
                import java.io.Serializable;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/MoreObjects.java

       *
       * <p>To find the first non-null element in an iterable, use {@code Iterables.find(iterable,
       * Predicates.notNull())}. For varargs, use {@code Iterables.find(Arrays.asList(a, b, c, ...),
       * Predicates.notNull())}, static importing as necessary.
       *
       * <p><b>Note:</b> if {@code first} is represented as an {@link Optional}, this can be
       * accomplished with {@link Optional#or(Object) first.or(second)}. That approach also allows for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/go/build/build_test.go

    	if _, err := ctxt.Import("example.com/p", gopath, FindOnly); err == nil {
    		t.Fatal("importing package when no go.mod is present succeeded unexpectedly")
    	} else if errStr := err.Error(); !strings.Contains(errStr, want) {
    		t.Fatalf("error when importing package when no go.mod is present: got %q; want %q", errStr, want)
    	} else {
    		t.Logf(`ctxt.Import("example.com/p", _, FindOnly): %v`, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    // - If we implement tests for all common functionality using the config of another component and it gets
    //   deprecated and/or we stop supporting it in production, we'll have to focus on a massive test refactoring
    //   or just continue importing this config just for test use.
    //
    // Thus, to reduce maintenance costs without sacrificing test coverage, we introduce this mini-framework
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    	m := make(map[key]analysis.Fact) // one big bucket
    	for _, imp := range d.pkg.Imports() {
    		logf := func(format string, args ...interface{}) {
    			if debug {
    				prefix := fmt.Sprintf("in %s, importing %s: ",
    					d.pkg.Path(), imp.Path())
    				log.Print(prefix, fmt.Sprintf(format, args...))
    			}
    		}
    
    		// Read the gob-encoded facts.
    		data, err := read(imp.Path())
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top