Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 345 for Identifying (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationExtensions.kt

     * You can also add exclude rules per-dependency. See [ModuleDependency.exclude].
     *
     * @param group the optional group identifying the dependencies to be excluded.
     * @param module the optional module name identifying the dependencies to be excluded.
     * @return this
     */
    fun Configuration.exclude(group: String? = null, module: String? = null): Configuration =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/tracing-canonical-service.yaml

    releaseNotes:
    - |
      **Added** canonical service tags to Envoy-generated trace spans.
    upgradeNotes:
      - title: Service Tags added to trace spans
        content: |
          Istio now configures Envoy to include tags identifying the canonical service for a workload in generated trace spans.
    
          This will lead to a small increase in storage per span for tracing backends.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 582 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/CustomComparisonFailure.java

    import junit.framework.ComparisonFailure;
    
    public class CustomComparisonFailure extends ComparisonFailure {
    
        /**
         * Constructs a comparison failure.
         *
         * @param message  the identifying message or null
         * @param expected the expected string value
         * @param actual   the actual string value
         */
        public CustomComparisonFailure(String message, String expected, String actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version.go

    package v1
    
    import (
    	"encoding/json"
    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type GroupResource struct {
    	Group    string `json:"group" protobuf:"bytes,1,opt,name=group"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 04 09:55:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-spi/src/main/java/org/gradle/caching/BuildCacheKey.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching;
    
    /**
     * Cache key identifying an entry in the build cache.
     *
     * @since 3.3
     */
    public interface BuildCacheKey {
        /**
         * Returns the string representation of the cache key.
         */
        String getHashCode();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/crypto/aes/cbc_ppc64x.go

    	var c cbc
    	c.b = b
    	c.enc = cbcDecrypt
    	copy(c.iv[:], iv)
    	return &c
    }
    
    func (x *cbc) BlockSize() int { return BlockSize }
    
    // cryptBlocksChain invokes the cipher message identifying encrypt or decrypt.
    //
    //go:noescape
    func cryptBlocksChain(src, dst *byte, length int, key *uint32, iv *byte, enc int, nr int)
    
    func (x *cbc) CryptBlocks(dst, src []byte) {
    	if len(src)%BlockSize != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:31 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/bisect/bisect.go

    //     but the most common mechanism is to hash some kind of identifying information
    //     like the file and line number where the change might be applied.
    //     [Hash] hashes its arguments to compute an ID.
    //
    //  3. Enable each change that the pattern says should be enabled.
    //     The [Matcher.ShouldEnable] method answers this question for a given change ID.
    //
    //  4. Print a report identifying each change that the pattern says should be printed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/Signatory.java

    import java.io.OutputStream;
    
    /**
     * A signatory is an object capable of providing a signature for an arbitrary stream of bytes.
     * @since 4.5
     */
    public interface Signatory {
    
        /**
         * <p>An identifying name for this signatory.</p>
         *
         * <p>The name must be constant for the life of the signatory and should uniquely identify it within a project.</p>
         */
        @Internal
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationStartedNotification.java

     * without risking method collision.
     *
     * @since 4.0
     */
    @UsedByScanPlugin
    public interface BuildOperationStartedNotification {
    
        /**
         * A unique, opaque, value identifying this operation.
         */
        Object getNotificationOperationId();
    
        /**
         * The ID of the parent of this notification.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/builder_flags.go

    func NewResourceBuilderFlags() *ResourceBuilderFlags {
    	filenames := []string{}
    
    	return &ResourceBuilderFlags{
    		FileNameFlags: &FileNameFlags{
    			Usage:     "identifying the resource.",
    			Filenames: &filenames,
    			Recursive: boolPtr(true),
    		},
    	}
    }
    
    // WithFile sets the FileNameFlags.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 6.7K bytes
    - Viewed (0)
Back to top