Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 879 for wire (0.52 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

        @Override
        public GradleRunner withPluginClasspath(Iterable<? extends File> classpath) {
            List<File> f = new ArrayList<>();
            for (File file : classpath) {
                // These objects are going across the wire.
                // 1. Convert any subclasses back to File in case the subclass isn't available in Gradle.
                // 2. Make them absolute here to deal with a different root at the server
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    func v1beta1FuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(r *metav1beta1.TableOptions, c fuzz.Continue) {
    			c.FuzzNoCustom(r)
    			// NoHeaders is not serialized to the wire but is allowed within the versioned
    			// type because we don't use meta internal types in the client and API server.
    			r.NoHeaders = false
    		},
    		func(r *metav1beta1.TableRow, c fuzz.Continue) {
    			c.Fuzz(&r.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    To add a lifecycle task, use link:{javadocPath}/org/gradle/api/tasks/TaskContainer.html#register-java.lang.String-java.lang.Class-[`tasks.register()`].
    The only thing you need to provide is a name.
    Put this task in our group and wire the actionable tasks that belong to this new lifecycle task using the link:{javadocPath}/org/gradle/api/DefaultTask.html#dependsOn-java.lang.Object...-[`dependsOn()`] method:
    
    ====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    }
    
    // ServeConn runs the server on a single connection.
    // ServeConn blocks, serving the connection until the client hangs up.
    // The caller typically invokes ServeConn in a go statement.
    // ServeConn uses the gob wire format (see package gob) on the
    // connection. To use an alternate codec, use [ServeCodec].
    // See [NewClient]'s comment for information about concurrent access.
    func (server *Server) ServeConn(conn io.ReadWriteCloser) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    .ExampleExtension.java
    ----
    include::{snippetsPath}/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleExtension.java[tags=dependencies-accessors]
    ----
    ====
    
    ==== 4. Wire dependency scope to `Configuration`
    
    Finally, the plugin needs to wire the custom `dependencies` block to some underlying `Configuration` objects. If this is not done, none of the dependencies declared in the custom block will
    be available to dependency resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    image::multi-project-standards.png[]
    
    === 1. Multi-Project Builds using `buildSrc`
    
    Multi-project builds allow you to organize projects with many modules, wire dependencies between those modules, and easily share common build logic amongst them.
    
    For example, a build that has many modules called `mobile-app`, `web-app`, `api`, `lib`, and `documentation` could be structured as follows:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/crypto/rsa/pss.go

    	em, err := encrypt(pub, sig)
    	if err != nil {
    		return ErrVerification
    	}
    
    	// Like in signPSSWithSalt, deal with mismatches between emLen and the size
    	// of the modulus. The spec would have us wire emLen into the encoding
    	// function, but we'd rather always encode to the size of the modulus and
    	// then strip leading zeroes if necessary. This only happens for weird
    	// modulus sizes anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    === Integration with tasks relying on a Java executable or Java home
    
    Any task that can be configured with a path to a Java executable, or a Java home location, can benefit from toolchains.
    
    While you will not be able to wire a toolchain tool directly, they all have the metadata that gives access to their full path or to the path of the Java installation they belong to.
    
    For example, you can configure the `java` executable for a task as follows:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/conntest.go

    	}
    }
    
    // resyncConn resynchronizes the connection into a sane state.
    // It assumes that everything written into c is echoed back to itself.
    // It assumes that 0xff is not currently on the wire or in the read buffer.
    func resyncConn(t *testing.T, c net.Conn) {
    	t.Helper()
    	c.SetDeadline(neverTimeout)
    	errCh := make(chan error)
    	go func() {
    		_, err := c.Write([]byte{0xff})
    		errCh <- err
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

                        }
                    }
                }
    
                tasks.register("resolve") {
                    val conf: FileCollection = configurations["runtimeClasspath"]
    
                    // Wire build dependencies
                    dependsOn(conf)
    
                    // Resolve dependencies
                    doLast {
                        assert(conf.files.map { it.name } == listOf("foo-1.0.jar"))
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top