Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for Piece (0.07 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

    import java.io.File;
    import java.io.InputStream;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Optional;
    import java.util.UUID;
    
    /**
     * The client piece of the build daemon.
     *
     * <p>To execute a build action:</p>
     *
     * <ul>
     * <li>The client creates a connection to daemon.</li>
     * <li>The client sends exactly one {@link Build} message.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    		proxyNamespace:            proxyNamespace,
    		forwardToUpstreamParallel: forwardToUpstreamParallel,
    	}
    
    	// proxyDomain could contain the namespace making it redundant.
    	// we just need the .svc.cluster.local piece
    	parts := strings.Split(proxyDomain, ".")
    	if len(parts) > 0 {
    		if parts[0] == proxyNamespace {
    			parts = parts[1:]
    		}
    		h.proxyDomainParts = parts
    		h.proxyDomain = strings.Join(parts, ".")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    In addition, Gradle plugins from the _buildSrc_ directory, an included build or an external location can be implemented using any JVM language.
    This makes it possible to migrate a build progressively, piece by piece, without blocking your team.
    
    Two approaches to migrations stand out:
    
     * Migrating the existing syntax of your build to Kotlin, bit by bit, while retaining the structure — what we call a _mechanical migration_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    In version 1.0, the module metadata file can describe only those modules that contain a single _component_, which is some piece of software such as a library or application. Support for more sophisticated mappings may be added by later versions.
    
    ## Usage in a Maven repository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

      def _any_log_contains(
          self, substring: str, log_record_list: List['logging.LogRecord']
      ) -> bool:
        """Returns True if any of the log contains a given substring.
    
        Args:
          substring: A piece of string to check whether it exists in the log
            message.
          log_record_list: A list of `absl.logging.LogRecord`s.
    
        Returns:
          True if and only if the substring exists in any of the log in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    - Can optionally include other builds (i.e. additional software such as libraries, plugins, build-time tools, etc).
    
    A project:
    
    - Represents a single piece of your architecture - a library, an app, a Gradle plugin, etc.
    - Can optionally contain other projects.
    
    == Step 5. Viewing Gradle files in an IDE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    		// each piece to see whether we've seen an arg reg op for it.
    		types, offsets := inp.RegisterTypesAndOffsets()
    		for k, t := range types {
    			// Note: this recipe for creating a LocalSlot is designed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	key, quit := c.queue.Get()
    	if quit {
    		return false
    	}
    	// you always have to indicate to the queue that you've completed a piece of work
    	defer c.queue.Done(key)
    
    	// do your work on the key.  This method will contains your "do stuff" logic
    	err := c.syncConfigMap()
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    In version 1.0, the module metadata file can describe only those modules that contain a single _component_, which is some piece of software such as a library or application. Support for more sophisticated mappings may be added in later versions.
    
    ## Usage in a Maven repository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    
    [[integration-tests]]
    === Implementing integration tests
    
    Let's look at a class that reaches out to another system, the piece of code that emits the HTTP calls.
    At the time of executing a test for the class `DefaultHttpCaller`, the runtime environment needs to be able to reach out to the internet:
    
    .DefaultHttpCaller.java
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top