Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for emitItem (0.14 sec)

  1. src/text/template/parse/lex.go

    	l.startLine = l.line
    	return i
    }
    
    // emit passes the trailing text as an item back to the parser.
    func (l *lexer) emit(t itemType) stateFn {
    	return l.emitItem(l.thisItem(t))
    }
    
    // emitItem passes the specified item to the parser.
    func (l *lexer) emitItem(i item) stateFn {
    	l.item = i
    	return nil
    }
    
    // ignore skips over the pending input before this point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/emitter.go

    	sortIndex int
    }
    
    func (e *Emitter) Gomaxprocs(v uint64) {
    	if v > e.gomaxprocs {
    		e.gomaxprocs = v
    	}
    }
    
    func (e *Emitter) Resource(id uint64, name string) {
    	if e.filter != nil && !e.filter(id) {
    		return
    	}
    	e.resources[id] = name
    }
    
    func (e *Emitter) SetResourceType(name string) {
    	e.resourceType = name
    }
    
    func (e *Emitter) SetResourceFilter(filter func(uint64) bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

    (){function t(e){o(this,t),this.resolveOptions(e),this.initSelection()}return a(t,[{key:"resolveOptions",value:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action=e.action,this.container=e.container,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""}},{key:"initSelection",value:function t(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function t(){var e=this,n="rtl...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/initorder.go

    		// introduce a node for each lhs variable (here: a, b);
    		// but they all have the same initializer - emit only
    		// one, for the first variable seen
    		if emitted[info] {
    			continue // initializer already emitted, if any
    		}
    		emitted[info] = true
    
    		infoLhs := info.lhs // possibly nil (see declInfo.lhs field comment)
    		if infoLhs == nil {
    			infoLhs = []*Var{v}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/initorder.go

    		// introduce a node for each lhs variable (here: a, b);
    		// but they all have the same initializer - emit only
    		// one, for the first variable seen
    		if emitted[info] {
    			continue // initializer already emitted, if any
    		}
    		emitted[info] = true
    
    		infoLhs := info.lhs // possibly nil (see declInfo.lhs field comment)
    		if infoLhs == nil {
    			infoLhs = []*Var{v}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            operations[':compileJava'].failure.contains('Compilation failed')
        }
    
        def "empty processor path overrides processors in the compile classpath, and no deprecation warning is emitted"() {
            buildFile << """
                dependencies {
                    implementation project(":annotation")
                    implementation project(":processor")
                }
    
                compileJava {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

            return new BuildOperationFiringSettingsPreparer(
                new DefaultSettingsPreparer(
                    settingsLoaderFactory
                ),
                buildOperationRunner,
                emitter,
                buildDefinition.getFromBuild());
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  8. src/main/webapp/js/clipboard.min.js

    class as a function")}(this,e),this.resolveOptions(t),this.initSelection()}return i(e,[{key:"resolveOptions",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==d...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat May 28 04:16:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestFailureProgressEventCrossVersionTest.groovy

    class TestFailureProgressEventCrossVersionTest extends TestFailureSpecification {
    
        def setup() {
            enableTestJvmDebugging = false
            enableStdoutProxying = true
        }
    
        def "Wrapped assertion errors are emitted as test failure events using JUnit 4"() {
            given:
            setupJUnit4()
            file('src/test/java/org/gradle/JUnitTest.java') << '''
                package org.gradle;
    
                import org.junit.Test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 17:52:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

        void versionMapping(Action<? super VersionMappingStrategy> configureAction);
    
        /**
         * Silences the compatibility warnings for the Maven publication for the specified variant.
         *
         * Warnings are emitted when Gradle features are used that cannot be mapped completely to Maven POM.
         *
         * @param variantName the variant to silence warning for
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top