Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for wirep (0.22 sec)

  1. src/runtime/proc.go

    	// Do the part that isn't allowed to have write barriers.
    	wirep(pp)
    
    	// Have p; write barriers now allowed.
    
    	// Perform deferred mcache flush before this P can allocate
    	// from a potentially stale mcache.
    	pp.mcache.prepareForSweep()
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.ProcStart()
    		traceRelease(trace)
    	}
    }
    
    // wirep is the first step of acquirep, which actually associates the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java

    import org.gradle.api.Project;
    
    /**
     * Adds an "example" extension to project and wires dependencies from the extension to a Configuration.
     */
    public class ExamplePlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            ExampleExtension example = project.getExtensions().create("example", ExampleExtension.class);
    // tag::wire-dependencies[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 661 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.pb.go

    		preIndex := iNdEx
    		var wire uint64
    		for shift := uint(0); ; shift += 7 {
    			if shift >= 64 {
    				return ErrIntOverflowGenerated
    			}
    			if iNdEx >= l {
    				return io.ErrUnexpectedEOF
    			}
    			b := dAtA[iNdEx]
    			iNdEx++
    			wire |= uint64(b&0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  4. src/internal/trace/raw/writer.go

    // license that can be found in the LICENSE file.
    
    package raw
    
    import (
    	"encoding/binary"
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Writer emits the wire format of a trace.
    //
    // It may not produce a byte-for-byte compatible trace from what is
    // produced by the runtime, because it may be missing extra padding
    // in the LEB128 encoding that the runtime adds but isn't necessary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    		switch ut.externalEnc {
    		case xGob:
    			info.wire.GobEncoderT = gt
    		case xBinary:
    			info.wire.BinaryMarshalerT = gt
    		case xText:
    			info.wire.TextMarshalerT = gt
    		}
    		rt = ut.user
    	} else {
    		t := info.id.gobType()
    		switch typ := rt; typ.Kind() {
    		case reflect.Array:
    			info.wire.ArrayT = t.(*arrayType)
    		case reflect.Map:
    			info.wire.MapT = t.(*mapType)
    		case reflect.Slice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/README.md

    Otherwise they're just normal programs.
    
    ## Trace debug commands
    
    The `cmd` directory contains helpful tools for debugging traces.
    
    * `gotraceraw` parses traces without validation.
      It can produce a text version of the trace wire format, or convert
      the text format back into bytes.
    * `gotracevalidate` parses traces and validates them.
      It performs more rigorous checks than the parser does on its own,
      which helps for debugging the parser as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                        DependencyScopeConfiguration implementation = project.getConfigurations().dependencyScope("implementation").get();
    
                        // create and wire the custom dependencies extension's dependencies to these global configurations
                        api.fromDependencyCollector(getRestricted().getDependencies().getApi());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheWorkerApiIntegrationTest.groovy

    import javax.inject.Inject
    
    class ConfigurationCacheWorkerApiIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements TasksWithInputsAndOutputs {
        def "task can wire input #type with fixed value to worker action parameter property"() {
            buildFile << """
                import ${Inject.name}
    
                abstract class UsesWorker extends DefaultTask {
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/SessionFailureReportingActionExecutor.java

            try {
                return delegate.execute(action, actionParameters, requestContext);
            } catch (Throwable e) {
                // TODO - wire this stuff in properly
    
                // Sanitise the exception and report it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/internal/trace/raw/reader.go

    // into an event stream.
    type Reader struct {
    	r     *bufio.Reader
    	v     version.Version
    	specs []event.Spec
    }
    
    // NewReader creates a new reader for the trace wire format.
    func NewReader(r io.Reader) (*Reader, error) {
    	br := bufio.NewReader(r)
    	v, err := version.ReadHeader(br)
    	if err != nil {
    		return nil, err
    	}
    	return &Reader{r: br, v: v, specs: v.Specs()}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top