Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for importing (0.17 sec)

  1. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.reporting.GenerateBuildDashboard.getInputReports()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GenerateBuildDashboard.java:0)
    Method <org.gradle.api.reporting.GenerateBuildDashboard.getReports()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GenerateBuildDashboard.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
                        validateStringNotEmpty(
                                "reporting.plugins.plugin.artifactId",
                                problems,
                                Severity.ERROR,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
                        validateStringNotEmpty(
                                "reporting.plugins.plugin.artifactId",
                                problems,
                                Severity.ERROR,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		bgwait(&wg)
    	}
    
    	// Build an importcfg file for the compiler.
    	buf := &bytes.Buffer{}
    	for _, imp := range sortedImports {
    		if imp == "unsafe" {
    			continue
    		}
    		dep := importMap[imp]
    		if imp != dep {
    			fmt.Fprintf(buf, "importmap %s=%s\n", imp, dep)
    		}
    		fmt.Fprintf(buf, "packagefile %s=%s\n", dep, packagefile(dep))
    	}
    	importcfg := pathf("%s/importcfg", workdir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (wasCancelled) {
            return new Cancellation(
                false,
                new IllegalArgumentException(
                    "get() did not throw CancellationException, despite reporting "
                        + "isCancelled() == true: "
                        + future));
          }
          return v == null ? NULL : v;
        } catch (ExecutionException exception) {
          if (wasCancelled) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (wasCancelled) {
            return new Cancellation(
                false,
                new IllegalArgumentException(
                    "get() did not throw CancellationException, despite reporting "
                        + "isCancelled() == true: "
                        + future));
          }
          return v == null ? NULL : v;
        } catch (ExecutionException exception) {
          if (wasCancelled) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.reporting.GenerateBuildDashboard.getInputReports()> has arguments/return type org.gradle.api.reporting.GenerateBuildDashboard$ReportState that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GenerateBuildDashboard.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	})
    	if nstk < len(prof.stack) {
    		prof.stack[nstk] = 0
    	}
    }
    
    func (prof *mLockProfile) store() {
    	// Report any contention we experience within this function as "lost"; it's
    	// important that the act of reporting a contention event not lead to a
    	// reportable contention event. This also means we can use prof.stack
    	// without copying, since it won't change during this function.
    	mp := acquirem()
    	prof.disabled = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// because all committed memory is charged to the process,
    	// even if it's not touched. Hence, for processes with small
    	// heaps, the mapped arena space needs to be commensurate.
    	// This is particularly important with the race detector,
    	// since it significantly amplifies the cost of committed
    	// memory.
    	heapArenaBytes = 1 << logHeapArenaBytes
    
    	heapArenaWords = heapArenaBytes / goarch.PtrSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/testing/testing.go

    		// associated with a specific test (and, specifically, that the next output
    		// is *not* associated with that test).
    		//
    		// Moreover, if c.output is non-empty it is important that this write be
    		// atomic with respect to the output of other tests, so that we don't end up
    		// with confusing '=== NAME' lines in the middle of our '--- PASS' block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top