Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 181 for unqualified (0.21 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ExecuteWorkItemBuildOperationType.java

    public interface ExecuteWorkItemBuildOperationType extends BuildOperationType<ExecuteWorkItemBuildOperationType.Details, ExecuteWorkItemBuildOperationType.Result> {
    
        interface Details {
            /**
             * Returns the fully-qualified class name of work item's action.
             */
            String getClassName();
    
            /**
             * Returns the display name of the work item.
             */
            String getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/funcid.go

    	// Don't show in call stack but otherwise not special.
    	"deferreturn": abi.FuncIDWrapper,
    }
    
    // Get the function ID for the named function in the named file.
    // The function should be package-qualified.
    func GetFuncID(name string, isWrapper bool) abi.FuncID {
    	if isWrapper {
    		return abi.FuncIDWrapper
    	}
    	if strings.HasPrefix(name, "runtime.") {
    		if id, ok := funcIDs[name[len("runtime."):]]; ok {
    			return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 21:33:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/work/WorkItemOperationDescriptor.java

    /**
     * Describes a work item operation for which an event has occurred.
     *
     * @since 5.1
     */
    public interface WorkItemOperationDescriptor extends OperationDescriptor {
        /**
         * Returns the fully-qualified class name of work item's action.
         */
        String getClassName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 995 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/BinaryPluginIdentifier.java

    import javax.annotation.Nullable;
    
    /**
     * Identifies a Gradle binary plugin.
     *
     * @since 5.1
     */
    public interface BinaryPluginIdentifier extends PluginIdentifier {
    
        /**
         * Returns the fully-qualified class name of this plugin.
         */
        String getClassName();
    
        /**
         * Returns the plugin id of this plugin, if available.
         */
        @Nullable
        String getPluginId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/go/types/resolver_test.go

    			t.Errorf("package %s not imported", name)
    		}
    	}
    
    	// check that qualified identifiers are resolved
    	for _, f := range files {
    		ast.Inspect(f, func(n ast.Node) bool {
    			if s, ok := n.(*ast.SelectorExpr); ok {
    				if x, ok := s.X.(*ast.Ident); ok {
    					obj := uses[x]
    					if obj == nil {
    						t.Errorf("%s: unresolved qualified identifier %s", fset.Position(x.Pos()), x.Name)
    						return false
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalBinaryPluginIdentifier.java

     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 5.1
     */
    public interface InternalBinaryPluginIdentifier extends InternalPluginIdentifier {
    
        /**
         * Returns the fully-qualified class name of this plugin.
         */
        String getClassName();
    
        /**
         * Returns the plugin id of this plugin, if available.
         */
        @Nullable
        String getPluginId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestFailure.java

    /**
     * Describes a test failure, that can either be a test assertion failure or a test framework failure.
     *
     * @since 7.6
     */
    @Incubating
    public interface TestFailure extends Failure {
    
        /**
         * The fully-qualified name of the underlying exception type.
         *
         * @return The exception class name
         */
        String getClassName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainResolverRegistry.java

        /**
         * Registers a <code>JavaToolchainResolver</code> implementation. The class name should be properly
         * name-spaced, to avoid collisions (if another resolver class with the same fully qualified name
         * is registered, a <code>GradleException</code> will be thrown).
         */
        <T extends JavaToolchainResolver> void register(Class<T> implementationType);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalTestFailure.java

         *
         * @return The failure message
         */
        @Nullable
        @Override
        String getMessage();
    
        /**
         * The fully-qualified name of the underlying exception type.
         *
         * @return The exception class name
         */
        String getClassName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/resolver_test.go

    			t.Errorf("package %s not imported", name)
    		}
    	}
    
    	// check that qualified identifiers are resolved
    	for _, f := range files {
    		syntax.Inspect(f, func(n syntax.Node) bool {
    			if s, ok := n.(*syntax.SelectorExpr); ok {
    				if x, ok := s.X.(*syntax.Name); ok {
    					obj := uses[x]
    					if obj == nil {
    						t.Errorf("%s: unresolved qualified identifier %s", x.Pos(), x.Value)
    						return false
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top