Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,964 for importing (0.15 sec)

  1. src/cmd/go/internal/modload/import.go

    			for i, mod := range e.mods {
    				args[i] = mod.Path
    			}
    			hint = fmt.Sprintf("; to add:\n\tgo mod download %s", strings.Join(args, " "))
    		}
    	} else {
    		// Importing package is known (common case). Recommend 'go get' on the
    		// current version of the importing package.
    		tFlag := ""
    		if e.importerIsTest {
    			tFlag = " -t"
    		}
    		version := ""
    		if e.importerVersion != "" {
    			version = "@" + e.importerVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. src/go/types/issues_test.go

    	want = "foo.Pointer"
    	if got != want {
    		t.Errorf("got %q; want %q", got, want)
    	}
    }
    
    func TestIssue43124(t *testing.T) {
    	// TODO(rFindley) move this to testdata by enhancing support for importing.
    
    	testenv.MustHaveGoBuild(t) // The go command is needed for the importer to determine the locations of stdlib .a files.
    
    	// All involved packages have the same name (template). Error messages should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    // registered defaulting procedures make no changes to these
    // particular objects (this is verified in the unit tests of the
    // internalbootstrap package; it can not be verified in this package
    // because that would require importing k8s.io/kubernetes).
    var (
    	MandatoryPriorityLevelConfigurations = []*flowcontrol.PriorityLevelConfiguration{
    		MandatoryPriorityLevelConfigurationCatchAll,
    		MandatoryPriorityLevelConfigurationExempt,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    == Catalog file doesn't exist
    
    This error indicates that you tried to import a catalog file, but the file doesn't exist.
    
    Make sure that it's not a typo, and if not, that the catalog file exists _before_ importing it.
    
    [[invalid_alias_notation]]
    == Invalid alias or bundle notation
    
    This error indicates that you have used an alias (or bundle) name which isn't supported by Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

    import org.testcontainers.DockerClientFactory
    
    // These imports are required, IntelliJ incorrectly thinks that they are not used because old versions of Groovy
    // permitted subtypes to use the parent type's methods without importing them
    import static org.gradle.test.precondition.TestPrecondition.satisfied;
    import static org.gradle.test.precondition.TestPrecondition.notSatisfied;
    
    @CompileStatic
    class UnitTestPreconditions {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      TF_RETURN_IF_ERROR(
          ParseOutputArrayInfo(control_output_arrays, &specs.control_outputs));
      // TODO(b/142828368): Pruning should not be needed when TF import
      // supports importing graphs w/ unregistered ops natively.
      GraphDef pruned_graph_def;
      if (specs.prune_unused_nodes) {
        std::vector<std::string> terminal_nodes;
        terminal_nodes.reserve(specs.outputs.size() + specs.inputs.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/dashboard_test.go

    		case <-done:
    			scopes.Framework.Infof("done sending traffic after %v rounds", times)
    			return
    		}
    	}
    }
    
    // extractQueries pulls all prometheus queries out of a grafana dashboard
    // Rather than importing the entire grafana API just for this test, do some shoddy json parsing
    // Equivalent to the union of the jq commands:
    // '.panels[].targets[]?.expr' and '.panels[].panels[]?.targets[]?.expr'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/spec/conversions.go

    // ----------------------------------------------------------------------------
    // The following declarations can be replaced by the exported types of the
    // constraints package once all builders support importing interfaces with
    // type constraints.
    
    type Signed interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64
    }
    
    type Unsigned interface {
    	~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/issues_test.go

    	want = "foo.Pointer"
    	if got != want {
    		t.Errorf("got %q; want %q", got, want)
    	}
    }
    
    func TestIssue43124(t *testing.T) {
    	// TODO(rFindley) move this to testdata by enhancing support for importing.
    
    	testenv.MustHaveGoBuild(t) // The go command is needed for the importer to determine the locations of stdlib .a files.
    
    	// All involved packages have the same name (template). Error messages should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. 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)
Back to top