Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,030 for Lparen (0.22 sec)

  1. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_Name-2]
    	_ = x[_Literal-3]
    	_ = x[_Operator-4]
    	_ = x[_AssignOp-5]
    	_ = x[_IncOp-6]
    	_ = x[_Assign-7]
    	_ = x[_Define-8]
    	_ = x[_Arrow-9]
    	_ = x[_Star-10]
    	_ = x[_Lparen-11]
    	_ = x[_Lbrack-12]
    	_ = x[_Lbrace-13]
    	_ = x[_Rparen-14]
    	_ = x[_Rbrack-15]
    	_ = x[_Rbrace-16]
    	_ = x[_Comma-17]
    	_ = x[_Semi-18]
    	_ = x[_Colon-19]
    	_ = x[_Dot-20]
    	_ = x[_DotDotDot-21]
    	_ = x[_Break-22]
    	_ = x[_Case-23]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. test/ken/rob2.go

    			panic(r)
    		}
    		break
    	}
    }
    
    func (slist *Slist) PrintOne(doparen bool) string {
    	if slist == nil {
    		return ""
    	}
    	var r string
    	if slist.isatom {
    		if slist.isstring {
    			r = slist.String()
    		} else {
    			r = fmt.Sprintf("%v", slist.Integer())
    		}
    	} else {
    		if doparen {
    			r += "("
    		}
    		r += slist.Car().PrintOne(true)
    		if slist.Cdr() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sharedResources/maven_repo/util/util/parent/util-parent/3/util-parent-3.pom

        <modelVersion>4.0.0</modelVersion>
        <groupId>util.util.parent</groupId>
        <artifactId>util-parent</artifactId>
        <version>3</version>
        <packaging>pom</packaging>
        <name>Test Parent Pom</name>
        <description>Defaults for Test Maven Build with remote parent projects.</description>
        <dependencies>
            <dependency>
                <groupId>commons-lang</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 731 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-parent</artifactId>
      <version>1.3</version>
      <packaging>pom</packaging>
    
      <name>Hamcrest Maven Parent</name>
      <url>https://github.com/hamcrest/JavaHamcrest</url>
      <description>General parent POM for all hamcrest libraries.</description>
    
      <licenses>
        <license>
          <name>New BSD License</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/flat-urls-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path == child-artifact-id</description>
    
      <modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>3</version>
        <relativePath>../asf/pom.xml</relativePath>
      </parent>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-parent</artifactId>
      <version>5</version>
      <packaging>pom</packaging>
      <name>Apache Maven</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/tokens.go

    	_Operator // op
    	_AssignOp // op=
    	_IncOp    // opop
    	_Assign   // =
    	_Define   // :=
    	_Arrow    // <-
    	_Star     // *
    
    	// delimiters
    	_Lparen    // (
    	_Lbrack    // [
    	_Lbrace    // {
    	_Rparen    // )
    	_Rbrack    // ]
    	_Rbrace    // }
    	_Comma     // ,
    	_Semi      // ;
    	_Colon     // :
    	_Dot       // .
    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-release.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>com.example.group</groupId>
        <artifactId>com-parent</artifactId>
        <version>RELEASE</version>
      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of RELEASE
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-parent.xml

      child.project.url.inherit.append.path="false">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>MNG-5951 MNG-6059 child.x.y.inherit.append.path="false" for each url to avoid automatic path addition when inheriting</description>
    
      <modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description>
    
      <modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top