Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 879 for wire (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/http/httputil/persist.go

    func (sc *ServerConn) Close() error {
    	c, _ := sc.Hijack()
    	if c != nil {
    		return c.Close()
    	}
    	return nil
    }
    
    // Read returns the next request on the wire. An [ErrPersistEOF] is returned if
    // it is gracefully determined that there are no more requests (e.g. after the
    // first request on an HTTP/1.0 connection, or after a Connection:close on a
    // HTTP/1.1 connection).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                component.getBinaries().whenElementKnown(binary -> components.add(binary));
    
                if (component instanceof ProductionComponent) {
                    // Add an assemble task for each binary and also wire the development binary in to the `assemble` task
                    component.getBinaries().whenElementFinalized(ComponentWithOutputs.class, binary -> {
                        // Determine which output to produce at development time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// We intentionally did not add a flag for this option. Users of the
    	// apiserver library can wire it to a flag.
    	JSONPatchMaxCopyBytes int64
    	// The limit on the request body size that would be accepted and
    	// decoded in a write request. 0 means no limit.
    	// We intentionally did not add a flag for this option. Users of the
    	// apiserver library can wire it to a flag.
    	MaxRequestBodyBytes int64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/net/http/transfer.go

    }
    
    // transferWriter inspects the fields of a user-supplied Request or Response,
    // sanitizes them without changing the user object and provides methods for
    // writing the respective header, body and trailer in wire format.
    type transferWriter struct {
    	Method           string
    	Body             io.Reader
    	BodyCloser       io.Closer
    	ResponseToHEAD   bool
    	ContentLength    int64 // -1 means unknown, 0 means exactly none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

    public class OutputEventListenerBackedLoggerContext implements ILoggerFactory {
    
        private static final LogLevel DEFAULT_LOG_LEVEL = LogLevel.LIFECYCLE;
    
        static final String HTTP_CLIENT_WIRE_LOGGER_NAME = "org.apache.http.wire";
        static final String META_INF_EXTENSION_MODULE_LOGGER_NAME = "org.codehaus.groovy.runtime.m12n.MetaInfExtensionModule";
        private static final String GROOVY_VM_PLUGIN_FACTORY = "org.codehaus.groovy.vmplugin.VMPluginFactory";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    This allows you to wire together `Provider` and `Property` instances before the values are configured.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. cmd/storage-rest_test.go

    		{"foo", "myobject", testData, false, false},
    		{"foo", "myobject-0byte", []byte{}, false, false},
    		// volume not found error.
    		{"foo-bar", "myobject", testData, true, false},
    		// Test some weird characters over the wire.
    		{"foo", "newline\n", testData, false, true},
    		{"foo", "newline\t", testData, false, true},
    		{"foo", "newline \n", testData, false, true},
    		{"foo", "newline$$$\n", testData, false, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top