Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for getLine (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                throws PluginDescriptorParsingException, InvalidPluginDescriptorException {
            PluginDescriptor pluginDescriptor = null;
    
            File pluginFile = pluginArtifact.getFile();
    
            try {
                if (pluginFile.isFile()) {
                    try (JarFile pluginJar = new JarFile(pluginFile, false)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

                    if (artifactResource == null) {
                        result.notFound(artifact.getId());
                    } else {
                        result.resolved(artifactResource.getFile());
                    }
                } catch (Exception e) {
                    result.failed(new ArtifactResolveException(artifact.getId(), e));
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            @Override
            public void execute(FileCopyDetails fileCopyDetails) {
                PluginDescriptor descriptor;
                try {
                    descriptor = new PluginDescriptor(fileCopyDetails.getFile().toURI().toURL());
                } catch (MalformedURLException e) {
                    // Not sure under what scenario (if any) this would occur,
                    // but there's no sense in collecting the descriptor if it does.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                    @InputFiles
                    public Set<File> getInputFiles() {
                        return Collections.emptySet();
                    }
    
                    @Input
                    public File getFile() {
                        return new File("some-file");
                    }
    
                    @Input
                    public FileCollection getFileCollection() {
                        return getProject().files();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        // source.
        if (auto next_iter_source =
                llvm::dyn_cast<mlir::tf_executor::NextIterationSourceOp>(
                    input_inst))
          input_inst = next_iter_source.GetSink();
    
        auto node_it = nodes_.find(input_inst);
        TF_RET_CHECK(node_it != nodes_.end())
            << "Use of OpResult encountered before def!";
        if (mlir::isa<mlir::tf_executor::ControlType>(input_result.getType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            @Override
            void apply() {
                // Rough implementation to get something to work
                ModelNodeInternal parentTarget = parent.getTarget();
                ModelNodeInternal childTarget = parentTarget.getLink(path.getName());
                if (childTarget == null) {
                    throw new NullPointerException("child is null");
                }
                // TODO:LPTR Remove projection for reference node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    // the standard copy of the compiler. The solution is to ask the tool binary to tell
    // us its own build ID using the "-V=full" flag now supported by all tools.
    // Then we know we're getting the build ID of the compiler that will actually run
    // during the build. (How does the compiler binary know its own content hash?
    // We store it there using updateBuildID after the standard link step.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    		return true
    	case 1:
    		// Something failed while panicking.
    		// Just print a stack trace and exit.
    		gp.m.dying = 2
    		print("panic during panic\n")
    		return false
    	case 2:
    		// This is a genuine bug in the runtime, we couldn't even
    		// print the stack trace successfully.
    		gp.m.dying = 3
    		print("stack trace unavailable\n")
    		exit(4)
    		fallthrough
    	default:
    		// Can't even print! Just exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top