Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 781 for beust (0.13 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                    We shouldn't use jdk.internal types.
                    
                    com.beust and org.testng.collections has classes that look like Guava.
    
                    We prefer to import javax.annotation and fully-qualify references to org.jetbrains.annotations.
                -->
                <property name="illegalPkgs" value="jdk.internal,com.beust,org.testng.collections,org.jetbrains.annotations"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="com.beust" name="jcommander" version="1.35">
             <artifact name="jcommander-1.35.jar">
                <pgp value="F60DB6893AB3825459528EADCC54B93C018511A4"/>
             </artifact>
          </component>
          <component group="com.beust" name="jcommander" version="1.72">
             <artifact name="jcommander-1.72.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. gradle/verification-keyring.keys

    BQJCk6EBAhsMAAoJEMe/JtC7YXhmy98AnRHs7OqylRv6FAvdrO1lHHwN3gznAKCB
    8rz92M8BU9vWD9WXUWwcNBZl6A==
    =XgGN
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    A8538F26D55EA9A3
    uid    Cedric Beust <cedric@beust.com>
    
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQENBE5oy/QBCAC13zHI9hc3L9b+d+idNwivCOh8T7ZbHXHRXwyhbmfxLryu56Y5
    gpsYKGIaWWBzPJLtiLMx5IuZz7stzu/gBXLezFkqJxa0Y7e50yDMSbqUMQAtzZpy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributePrecedenceSchemaAttributeMatcherTest.groovy

            def candidate1 = candidate("best", "best", "best")
            def candidate2 = candidate("best", "best", "compatible")
            def candidate3 = candidate("best", "compatible", "compatible")
            def candidate4 = candidate("compatible", "best", "best")
            def candidate5 = candidate("compatible", "compatible", "best")
            def candidate6 = candidate("compatible", "compatible", "compatible")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/helper/qos/qos_test.go

    			expected: v1.PodQOSGuaranteed,
    		},
    		{
    			pod: newPod("best-effort-best-effort", []v1.Container{
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    			}),
    			expected: v1.PodQOSBestEffort,
    		},
    		{
    			pod: newPod("best-effort", []v1.Container{
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

          } else {
            return position[a] < position[b];  // preserve order
          }
        };
    
        Operation* best = nullptr;
        for (Operation* op : ready) {
          if (best == nullptr || better(op, best)) {
            best = op;
          }
        }
    
        if (!best) {
          assert(ready.empty());
          return result;  // happens for unused results for ops in the todo list
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. src/go/doc/comment/wrap_test.go

    	// Quadratic dynamic programming algorithm for line wrapping problem.
    	// best[i] tracks the best score possible for words[:i],
    	// assuming that for i < len(words) the line breaks after those words.
    	// bestleft[i] tracks the previous line break for best[i].
    	best := make([]int64, len(words)+1)
    	bestleft := make([]int, len(words)+1)
    	best[0] = 0
    	for i, w := range words {
    		if utf8.RuneCountInString(w) >= max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

                        }
                        best = best != null ? best : moduleResolution;
                        break;
                    default:
                        throw new IllegalStateException("Unexpected state for resolution: " + metaDataResolveResult.getState());
                }
            }
    
            return best;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            schema.accept(other, "requested", "best")
            schema.prefer(other, "best")
    
            def candidate1 = attributes(usage: "best", other: "compatible")
            def candidate2 = attributes(usage: "no match", other: "no match")
            def candidate3 = attributes(usage: "compatible", other: "best")
            def candidate4 = attributes()
            def candidate5 = attributes(usage: "best", other: "best")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            def candidates = [value1, value2] as Set
    
            when:
            def best = schema.matcher().selectionSchema.disambiguate(attr, flavor('requested'), candidates)
    
            then:
            best == [value1] as Set
    
            when:
            best = schema.matcher().selectionSchema.disambiguate(attr, value2, candidates)
    
            then:
            best == [value1] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top