Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,815 for wire (0.07 sec)

  1. staging/src/k8s.io/api/admission/v1/generated.pb.go

    	for iNdEx < l {
    		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: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':show'.")
            failure.assertHasCause("The value for task ':show' property 'prop' is final and cannot be changed any further.")
        }
    
        def "can wire the output file of multiple tasks as input to another task using property"() {
            buildFile """
                class FileOutputTask extends DefaultTask {
                    @InputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/resources/org/gradle/nativeplatform/test/cunit/tasks/gradle_cunit_main.c

        failureCount = CU_get_number_of_failures();
    
        // Write test failures to the console
        if (failureCount > 0) {
            printf("\nThere were test failures:");
            CU_basic_show_failures(CU_get_failure_list());
            printf("\n\n");
        }
    
        CU_cleanup_registry();
    
        // TODO Wire a test listener and use it to generate a test event stream and binary results (don't use Automated)
    
        return failureCount == 0 ? 0 : -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

            failure.assertHasCause("Cannot set the value of extension 'custom' property 'prop' of type org.gradle.api.file.RegularFile using a provider of type org.gradle.api.file.Directory.")
        }
    
        def "can wire the output file of a task as input to another task using property"() {
            buildFile """
                class FileOutputTask extends DefaultTask {
                    @InputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    installTask.getExecutableFile().set(executable.getFile());
                    installTask.getInstallDirectory().set(installation.getDirectory());
                    //TODO:HH wire binary libs via executable
                    installTask.lib(new BinaryLibs(binary) {
                        @Override
                        protected FileCollection getFiles(NativeDependencySet nativeDependencySet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/encoding/gob/decoder.go

    	if id < firstUserId || dec.wireType[id] != nil {
    		dec.err = errors.New("gob: duplicate type received")
    		return
    	}
    
    	// Type:
    	wire := new(wireType)
    	dec.decodeValue(tWireType, reflect.ValueOf(wire))
    	if dec.err != nil {
    		return
    	}
    	// Remember we've seen this type.
    	dec.wireType[id] = wire
    }
    
    var errBadCount = errors.New("invalid message length")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top