Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 679 for oplus (0.17 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta2/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *FlowSchema) APILifecycleDeprecated() (major, minor int) {
    	return 1, 26
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 03 18:04:51 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr2PluginIntegrationTest.groovy

                    package org.acme;
                }
    
                class TestGrammar extends Parser;
    
                options {
                    buildAST = true;
                }
    
                expr:   mexpr (PLUS^ mexpr)* SEMI!
                    ;
    
                mexpr
                    :   atom (STAR^ atom)*
                    ;
    
                atom:   INT
                    ;"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getModule("gradle-dependency-management").getAllRequiredModulesClasspath());
                classpath = classpath.plus(moduleRegistry.getModule("gradle-plugin-use").getAllRequiredModulesClasspath());
                classpath = classpath.plus(moduleRegistry.getModule("gradle-workers").getAllRequiredModulesClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *FlowSchema) APILifecycleDeprecated() (major, minor int) {
    	return 1, 29
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/antlr/useAntlrPlugin/groovy/src/main/antlr/org/gradle/Calculator.g

    grammar Calculator;
    
    @lexer::header {
        package org.gradle;
    }
    
    @parser::header {
        package org.gradle;
    }
    
    add
        :    NUMBER PLUS NUMBER
        ;
    
    NUMBER
        :    ('0'..'9')+
        ;
    
    PLUS
        :    ('+')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/antlr/useAntlrPlugin/kotlin/src/main/antlr/org/gradle/Calculator.g

    grammar Calculator;
    
    @lexer::header {
        package org.gradle;
    }
    
    @parser::header {
        package org.gradle;
    }
    
    add
        :    NUMBER PLUS NUMBER
        ;
    
    NUMBER
        :    ('0'..'9')+
        ;
    
    PLUS
        :    ('+')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/annotationUsage.ir.txt

          FUN name:run visibility:public modality:FINAL <> () returnType:kotlin.Int
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PLUS
                  $this: CALL 'public final fun foo (): kotlin.Int declared in <root>.ContextKt' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 962 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *Eviction) APILifecycleDeprecated() (major, minor int) {
    	return 1, 22
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/simple.ir.txt

          FUN name:run visibility:public modality:FINAL <> () returnType:kotlin.Int
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PLUS
                  $this: CONST Int type=kotlin.Int value=2
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/regexp/syntax/simplify.go

    			}
    
    			// Special case: x{1,} is x+.
    			if re.Min == 1 {
    				return simplify1(OpPlus, re.Flags, sub, nil)
    			}
    
    			// General case: x{4,} is xxxx+.
    			nre := &Regexp{Op: OpConcat}
    			nre.Sub = nre.Sub0[:0]
    			for i := 0; i < re.Min-1; i++ {
    				nre.Sub = append(nre.Sub, sub)
    			}
    			nre.Sub = append(nre.Sub, simplify1(OpPlus, re.Flags, sub, nil))
    			return nre
    		}
    
    		// Special case x{0} handled above.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
Back to top