Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 811 for selectJdk (0.13 sec)

  1. docs/changelogs/changelog_1x.md

    need to customize SSL, do so for your specific OkHttpClient instance only.
    
    ##### Synthetic headers have changed
    
    Previously OkHttp added a synthetic response header, `OkHttp-Selected-Transport`. It
    has been replaced with a new synthetic header, `OkHttp-Selected-Protocol`.
    
    ##### Changes
    
     * New: Support for `HTTP-draft-09/2.0`.
     * New: Support for `spdy/3.1`. Dropped support for `spdy/3`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/SelectedArtifactSet.java

        /**
         * Visits the artifacts of this set. Does not include any artifacts that could not be selected. Failures to select or resolve artifacts are supplied to the visitor.
         */
        void visitArtifacts(ArtifactVisitor visitor, boolean continueOnSelectionFailure);
    
        /**
         * Visits the files of this set. Does not include any files that could not be selected. Failures to select or resolve artifacts are supplied to the visitor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                    }
                }
            }
    
            @Override
            public boolean hasResult() {
                return selected != null;
            }
    
            @Override
            public ComponentState getSelected() {
                return selected.getComponent();
            }
        }
    
        private static class CapabilityConflict {
    
            private final Collection<NodeState> nodes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandlerTest.groovy

            handler.resolveNextConflict { ConflictResolutionResult r ->
                assert r.selected.id == newId("org", "a", "2")
            }
    
            then:
            1 * resolver.select(_) >> { args ->
                def details = args[0]
                def selected = details.candidates.find { it.id.version == '2' }
                details.select(selected)
            }
            0 * details._
            0 * resolver._
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        }
    
        // drop currently selected items that do not match re.
        selected.forEach(function(v, n) {
          if (!match(nodes[n])) {
            unselect(n);
          }
        })
    
        // add matching items that are not currently selected.
        if (nodes) {
          for (let n = 0; n < nodes.length; n++) {
            if (!selected.has(n) && match(nodes[n])) {
              select(n);
            }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicyTest.java

            MetadataGraphEdge res;
    
            res = policy.apply(e1, e2);
            assertEquals("1.1", res.getVersion(), "Wrong depth edge selected");
    
            res = policy.apply(e1, e3);
            assertEquals("1.2", res.getVersion(), "Wrong version edge selected");
        }
        // ------------------------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/AbstractRenderableDependency.java

        }
    
        @Override
        public List<Section> getExtraDetails() {
            return Collections.emptyList();
        }
    
        protected boolean exactMatch(ComponentSelector requested, ComponentIdentifier selected) {
            if (requested instanceof ModuleComponentSelector) {
                VersionConstraint versionConstraint = ((ModuleComponentSelector) requested).getVersionConstraint();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * <p>
         * Any version not matched by this version notation will be excluded. This is the strongest version declaration.
         * It will cause dependency resolution to fail if no version acceptable by this clause can be selected.
         * This term supports dynamic versions.
         * <p>
         * This will override a previous {@link #require(String) require} declaration.
         * <p>
         * This clears any set rejected versions.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/edit.go

    				// graph, they can always add an explicit 'exclude' directive.
    				conflicts = append(conflicts, conflict)
    				continue
    			}
    
    			// If m is not the selected version of its path, we have two options: we
    			// can either upgrade to the version that actually is selected (dropping m
    			// itself out of the bottom of the module graph), or we can try
    			// downgrading it.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is line number 1.
         * A non-positive value indicates that the column information is not available.
         *
         * @return the column
         */
        int getColumn();
    
        /**
         * The length of the selected content starting from specified column.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top