Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 236 for emitItem (0.16 sec)

  1. 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)
  2. 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)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemsProgressEventEmitterHolder.java

        }
    
        public static InternalProblems get() {
            if (problemsService == null) {
                throw new IllegalStateException("Problems service was null. At the same time, the event emitter is: " + new NoOpBuildOperationProgressEventEmitter());
            }
            return problemsService;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/compress/flate/dict_decoder.go

    //     Any valid stream must start with a literal insertion if no preset dictionary
    //     is used.
    //
    //   - Backward copies: Runs of one or more symbols are copied from previously
    //     emitted data. Backward copies come as the tuple (dist, length) where dist
    //     determines how far back in the stream to copy from and length determines how
    //     many bytes to copy. Note that it is valid for the length to be greater than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. src/cmd/trace/goroutinegen.go

    	}
    	gg.stackSampleGenerator.getResource = rg
    	gg.logEventGenerator.getResource = rg
    	gg.gStates = make(map[trace.GoID]*gState[trace.GoID])
    	gg.focus = focus
    	gg.filter = filter
    
    	// Enable a filter on the emitter.
    	if filter != nil {
    		ctx.SetResourceFilter(func(resource uint64) bool {
    			_, ok := filter[trace.GoID(resource)]
    			return ok
    		})
    	}
    	return gg
    }
    
    func (g *goroutineGenerator) Sync() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/trace/jsontrace.go

    			log.Printf("failed to generate trace: %v", err)
    		}
    	})
    }
    
    // traceContext is a wrapper around a traceviewer.Emitter with some additional
    // information that's useful to most parts of trace viewer JSON emission.
    type traceContext struct {
    	*traceviewer.Emitter
    	startTime trace.Time
    	endTime   trace.Time
    }
    
    // elapsed returns the elapsed time between the trace time and the start time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_arm64.s

    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // carryPropagate works exactly like carryPropagateGeneric and uses the
    // same AND, ADD, and LSR+MADD instructions emitted by the compiler, but
    // avoids loading R0-R4 twice and uses LDP and STP.
    //
    // See https://golang.org/issues/43145 for the main compiler issue.
    //
    // func carryPropagate(v *Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest.groovy

    abstract class AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest extends AbstractConsoleGroupedTaskFunctionalTest {
    
        private static final String JAVA_SRC_DIR_PATH = 'src/main/java'
    
        def "compiler warnings emitted from compilation task are grouped"() {
            given:
            def javaSourceFile = file("$JAVA_SRC_DIR_PATH/MyClass.java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockReleasedSignal.java

     */
    public interface FileLockReleasedSignal {
    
        /**
         * Triggers this signal to notify the lock requesters that the file
         * lock has been released.
         *
         * <p>Returns once the signal has been emitted but not necessarily
         * received by the lock requesters.
         */
        void trigger();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/collections/EventSubscriptionVerifier.java

     * subscribed type should be immediately realized when added to a container.
     */
    public interface EventSubscriptionVerifier<T> {
    
        /**
         * Determines whether events should be emitted for elements of the given type.
         */
        boolean isSubscribed(@Nullable Class<? extends T> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:16:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top