Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for selectJdk (0.14 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

      ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	return mg.g.RequiredBy(m)
    }
    
    // Selected returns the selected version of the module with the given path.
    //
    // If no version is selected, Selected returns version "none".
    func (mg *ModuleGraph) Selected(path string) (version string) {
    	return mg.g.Selected(path)
    }
    
    // WalkBreadthFirst invokes f once, in breadth-first order, for each module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

        /* Background color for subnavigation and various headers */
        --subnav-background-color: #dee3e9;
        /* Background and text colors for selected tabs and navigation items */
        --selected-background-color: #f8981d;
        --selected-text-color: #253441;
        --selected-link-color: #1f389c;
        /* Background colors for generated tables */
        --even-row-color: #ffffff;
        --odd-row-color: #eeeeef;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                                it.requested.matchesStrictly(projectId(":api")) &&
                                it.selected.componentId == moduleId("org.utils", "api", "2.0") &&
                                !it.selected.selectionReason.forced &&
                                !it.selected.selectionReason.selectedByRule &&
                                it.selected.selectionReason.conflictResolution
                            }
                            assert deps.find {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    // was selected at the start of this 'go get' invocation.
    func (r *resolver) initialSelected(mPath string) (version string) {
    	v, ok := r.initialVersion[mPath]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    // selected returns the version of the module with the given path that is
    // selected in the resolver's current build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    			if missing := (*ImportMissingError)(nil); errors.As(mismatch.err, &missing) {
    				selected := module.Version{
    					Path:    pkg.mod.Path,
    					Version: mg.Selected(pkg.mod.Path),
    				}
    				ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it in %s", pkg.stackText(), pkg.mod, compatVersion, selected))
    			} else {
    				if ambiguous := (*AmbiguousImportError)(nil); errors.As(mismatch.err, &ambiguous) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        public void restart(ComponentState selected) {
            // Restarting this configuration after conflict resolution.
            // If this configuration belongs to the select version, queue ourselves up for traversal.
            // If not, then remove our incoming edges, which triggers them to be moved across to the selected configuration
            if (component == selected) {
                if (!evicted) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. tests/query_test.go

    	if result.ID != 0 {
    		t.Errorf("Should not have ID because only selected name, %+v", result.ID)
    	}
    
    	if user.Name != result.Name {
    		t.Errorf("Should have user Name when selected it")
    	}
    
    	var result2 User
    	DB.Where("name = ?", user.Name).Select("name as name").Find(&result2)
    	if result2.ID != 0 {
    		t.Errorf("Should not have ID because only selected name, %+v", result2.ID)
    	}
    
    	if user.Name != result2.Name {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // This type is beta-level in 1.8
    type PolicyType string
    
    const (
    	// PolicyTypeIngress is a NetworkPolicy that affects ingress traffic on selected pods
    	PolicyTypeIngress PolicyType = "Ingress"
    	// PolicyTypeEgress is a NetworkPolicy that affects egress traffic on selected pods
    	PolicyTypeEgress PolicyType = "Egress"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                            assert it.selected.id.module == 'leaf'
                        }
                        c.dependencies.each {
                            assert it instanceof ResolvedDependencyResult
                            assert it.requested.toString() == 'org:leaf:[1.5,1.9]'
                            assert it.selected.id.module == 'leaf'
                        }
                        d.dependencies.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top