Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for Elias (0.41 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    // compares the resulting errors with the ERROR annotations in the source.
    // Except for manual tests, each package is type-checked twice, once without
    // use of Alias types, and once with Alias types.
    //
    // The srcs slice contains the file content for the files named in the
    // filenames slice. The colDelta parameter specifies the tolerance for position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/iexport.go

    //             Pos       Pos
    //             Name      stringOff
    //             Recv      Param
    //             Signature Signature
    //         }
    //     }
    //
    //     type Alias struct {
    //         Tag  byte // 'A'
    //         Pos  Pos
    //         Type typeOff
    //     }
    //
    //     // "Automatic" declaration of each typeparam
    //     type TypeParam struct {
    //         Tag        byte // 'P'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/doc/doc_test.go

    			`var LongLine = newLongLine\(("someArgument[1-4]", ){4}...\)`,  // Long list of arguments.
    			`type T1 = T2`,                                                 // Type alias
    			`type SimpleConstraint interface{ ... }`,
    			`type TildeConstraint interface{ ... }`,
    			`type StructConstraint interface{ ... }`,
    		},
    		[]string{
    			`const internalConstant = 2`,       // No internal constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .longOpt("batch-mode")
                    .desc("Run in non-interactive mode. Alias for --non-interactive (kept for backwards compatability)")
                    .build());
            options.addOption(Option.builder()
                    .longOpt(NON_INTERACTIVE)
                    .desc("Run in non-interactive mode. Alias for --batch-mode")
                    .build());
            options.addOption(Option.builder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typexpr.go

    			x.val = obj.val
    		}
    		assert(x.val != nil)
    		x.mode = constant_
    
    	case *TypeName:
    		if !check.conf.EnableAlias && check.isBrokenAlias(obj) {
    			check.errorf(e, InvalidDeclCycle, "invalid use of type alias %s in recursive type (see go.dev/issue/50729)", obj.name)
    			return
    		}
    		x.mode = typexpr
    
    	case *Var:
    		// It's ok to mark non-local variables, but ignore variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbolProvider.kt

                is FirTypeAliasSymbol -> firClassLike.fullyExpandedClass(analysisSession.useSiteSession)
                    ?: errorWithAttachment("${firClassLike.fir::class} should be expanded to the expected type alias") {
                        val errorElement = this@resolveToFirClassLikeSymbol
                        withFirSymbolEntry("firClassLikeSymbol", firClassLike)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/assign.go

    		}
    
    		if name.Addrtaken() || !name.OnStack() {
    			// Global variable, heap escaped, or just addrtaken.
    			// Conservatively assume any memory access might alias.
    			memWrite = true
    			continue
    		}
    
    		// Local, non-addrtaken variable.
    		// Assignments can only alias with direct uses of this variable.
    		assigned.Add(name)
    	}
    
    	early.Append(late.Take()...)
    	return early
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes.go

    		decl
    	}
    
    	// Name Type
    	TypeDecl struct {
    		Group      *Group // nil means not part of a group
    		Pragma     Pragma
    		Name       *Name
    		TParamList []*Field // nil means no type parameters
    		Alias      bool
    		Type       Expr
    		decl
    	}
    
    	// NameList Type
    	// NameList Type = Values
    	// NameList      = Values
    	VarDecl struct {
    		Group    *Group // nil means not part of a group
    		Pragma   Pragma
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            for (PlexusConfiguration d : parameterConfigurations) {
                Parameter parameter = new Parameter();
    
                parameter.setName(extractName(d));
    
                parameter.setAlias(d.getChild("alias").getValue());
    
                parameter.setType(d.getChild("type").getValue());
    
                String required = d.getChild("required").getValue();
    
                parameter.setRequired(Boolean.parseBoolean(required));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        protected void createAlias(final String index, final String createdIndexName) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            // alias
            final String aliasConfigDirPath = getResourcePath(indexConfigPath, fessConfig.getFesenType(), "/" + index + "/alias");
            try {
                final File aliasConfigDir = ResourceUtil.getResourceAsFile(aliasConfigDirPath);
                if (aliasConfigDir.isDirectory()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top