Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 737 for qualifies (0.15 sec)

  1. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/resolver/FirStandaloneNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Qualified {
          @Test
          public void testAllFilesPresentInQualified() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.8K bytes
    - Viewed (0)
  2. src/go/types/format.go

    	var fset *token.FileSet
    	var qf Qualifier
    	if check != nil {
    		fset = check.fset
    		qf = check.qualifier
    	}
    	return sprintf(fset, qf, false, format, args...)
    }
    
    func (check *Checker) trace(pos token.Pos, format string, args ...any) {
    	fmt.Printf("%s:\t%s%s\n",
    		check.fset.Position(pos),
    		strings.Repeat(".  ", check.indent),
    		sprintf(check.fset, check.qualifier, true, format, args...),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

         * <p>
         * The target class should be selected with its fully-qualified name.
         *
         * @param cls The fully-qualified name of the target class.
         * @return this
         */
        TestSpec includeClass(String cls);
    
        /**
         * Adds the target test classes to the test execution.
         *
         * @see #includeClass(String)
         * @param classes The fully-qualified name of the target classes.
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/format.go

    func (check *Checker) sprintf(format string, args ...any) string {
    	var qf Qualifier
    	if check != nil {
    		qf = check.qualifier
    	}
    	return sprintf(qf, false, format, args...)
    }
    
    func (check *Checker) trace(pos syntax.Pos, format string, args ...any) {
    	fmt.Printf("%s:\t%s%s\n",
    		pos,
    		strings.Repeat(".  ", check.indent),
    		sprintf(check.qualifier, true, format, args...),
    	)
    }
    
    // dump is only needed for debugging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/volume/util/metrics_test.go

    		pluginName   string
    		spec         *volume.Spec
    		wantFullName string
    	}{
    		{
    			name:         "get full qualified plugin name without volume spec",
    			pluginName:   fakePluginName,
    			spec:         nil,
    			wantFullName: fakePluginName,
    		},
    		{
    			name:         "get full qualified plugin name without using CSI plugin",
    			pluginName:   fakePluginName,
    			spec:         &volume.Spec{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 04 08:28:28 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/AppliedPlugin.java

    public interface AppliedPlugin {
    
        /**
         * The ID of the plugin.
         * <p>
         * An example of a plugin ID would be {@code "org.gradle.java"}.
         * This method always returns the fully qualified ID, regardless of whether the fully qualified ID was used to apply the plugin or not.
         * <p>
         * This value is guaranteed to be unique, for a given {@link org.gradle.api.plugins.PluginAware}.
         *
         * @return the ID of the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         * provides a direct mapping from each simple name to the qualified name of the class to use.
         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
         * the packages returned by {@link #getImportPackages()}. For historical reasons,
         * some simple name match multiple qualified names. In those cases the first match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

            val triggerName = this.triggerName
    
            params {
                param("branch.qualifier", "%dep.${RelativeId("Check_Stage_${triggerName}_Trigger")}.teamcity.build.branch%")
                text(
                    "branch.to.promote",
                    "%branch.qualifier%",
                    label = "Branch to promote",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            assert deleted == asSet(classNames)
        }
    
        private Set<String> getChangedFileNames(boolean qualified = false) {
            // Get all of the files that do not have a zero last modified timestamp
            return getFiles(qualified) { it.lastModified() > 0 }
        }
    
        private Set<String> getFiles(boolean qualified = false, Predicate<File> criteria) {
            // Get all of the files that do not have a zero last modified timestamp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/CorePluginUseIntegrationSpec.groovy

        def "can reapply core plugin applied via qualified id in plugins block"() {
            when:
            buildScript """
                plugins {
                    id "org.gradle.java"
                }
    
                assert plugins.hasPlugin("java")
    
                apply plugin: "java"
            """
    
            then:
            succeeds "help"
        }
    
        def "can use qualified and unqualified ids to detect core plugins"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top