Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for RELEASE (0.12 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                if (equals("LATEST", parent.getVersion()) || equals("RELEASE", parent.getVersion())) {
                    addViolation(
                            problems,
                            Severity.WARNING,
                            Version.BASE,
                            "parent.version",
                            null,
                            "is either LATEST or RELEASE (both of them are being deprecated)",
                            parent);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This is typically achieved by including `internal` in the implementation package names.
    However, before this release, the configuration cache subsystem did not follow this pattern, potentially causing confusion.
    
    To address this issue, in the current release, all code originally under the `org.gradle.configurationcache*` packages
    (which was never API) has been moved to new internal packages (`org.gradle.internal.*`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	// ReleaseTags defaults to the list of Go releases the current release is compatible with.
    	// BuildTags is not set for the Default build Context.
    	// In addition to the BuildTags, ToolTags, and ReleaseTags, build constraints
    	// consider the values of GOARCH and GOOS as satisfied tags.
    	// The last element in ReleaseTags is assumed to be the current release.
    	BuildTags   []string
    	ToolTags    []string
    	ReleaseTags []string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		if len(t.sub) > 0 {
    			// Run parallel subtests.
    
    			// Decrease the running count for this test and mark it as no longer running.
    			t.context.release()
    			running.Delete(t.name)
    
    			// Release the parallel subtests.
    			close(t.barrier)
    			// Wait for subtests to complete.
    			for _, sub := range t.sub {
    				<-sub.signal
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    outgoingDependency.markUnused();
                    outgoingDependency.removeFromTargetConfigurations();
                    outgoingDependency.getSelector().release(resolveState.getConflictTracker());
                }
            }
            virtualEdges = null;
            previousTraversalExclusions = null;
            cachedFilteredDependencyStates = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    for (Extension ext : extensions) {
                        String version;
                        if (ext.getVersion() == null || ext.getVersion().isEmpty()) {
                            version = "RELEASE";
                        } else {
                            version = ext.getVersion();
                        }
    
                        Artifact artifact = repositorySystem.createArtifact(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. configure.py

      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
      if not curr_version_int:
        print('WARNING: current bazel installation is not a release version.')
        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    def set_cc_opt_flags(environ_cp):
      """Set up architecture-dependent optimization flags.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	// which is darwin,linux,windows/amd64 and darwin/arm64.
    	//
    	// The same logic applies to the release notes that correspond to each api/next file.
    	if goos == "darwin" || ((goos == "linux" || goos == "windows") && goarch == "amd64") {
    		t.registerTest("API release note check", &goTest{variant: "check", pkg: "cmd/relnote", testFlags: []string{"-check"}})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	//
    	// Access is protected by mheap_.lock. However, since this is
    	// append-only and old backing arrays are never freed, it is
    	// safe to acquire mheap_.lock, copy the slice header, and
    	// then release mheap_.lock.
    	allArenas []arenaIdx
    
    	// sweepArenas is a snapshot of allArenas taken at the
    	// beginning of the sweep cycle. This can be read safely by
    	// simply blocking GC (by disabling preemption).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	addVar(sys, 2)
    	tg.wantStale("p1", "stale dependency: runtime", "./testgo list claims p1 is NOT stale, incorrectly, after changing sys.go again")
    	tg.run("install", "p1")
    	tg.wantNotStale("p1", "", "./testgo list claims p1 is stale after building with new release")
    
    	// Restore to "old" release.
    	restore()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top