Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for variants (2.56 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            !immutable.relocated
            immutable.configurationNames == ["compile", "runtime", "test", "provided", "system", "optional", "master", "default", "javadoc", "sources"] as Set
            immutable.variants.empty
        }
    
        def "initialises values from descriptor state and defaults"() {
            def id = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "version")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

            public Map<String, String> getToAttributes() {
                return AttributesToMapConverter.convertToMap(transform.getToAttributes());
            }
    
            @Override
            public org.gradle.operations.dependencies.variants.ComponentIdentifier getComponentId() {
                return ComponentToOperationConverter.convertComponentIdentifier(componentIdentifier);
            }
    
            @Override
            public String getArtifactName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. istioctl/cmd/root.go

    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    	var debugCmdAttachmentPoint *cobra.Command
    	if viper.GetBool("PREFER-EXPERIMENTAL") {
    		legacyCmd := &cobra.Command{
    			Use:   "legacy",
    			Short: "Legacy command variants",
    		}
    		rootCmd.AddCommand(legacyCmd)
    		for _, c := range xdsBasedTroubleshooting {
    			rootCmd.AddCommand(c)
    		}
    		debugCmdAttachmentPoint = legacyCmd
    	} else {
    		debugCmdAttachmentPoint = rootCmd
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519.go

    	}
    }
    
    // Options can be used with [PrivateKey.Sign] or [VerifyWithOptions]
    // to select Ed25519 variants.
    type Options struct {
    	// Hash can be zero for regular Ed25519, or crypto.SHA512 for Ed25519ph.
    	Hash crypto.Hash
    
    	// Context, if not empty, selects Ed25519ctx or provides the context string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/waypoint_test.go

    			}, retry.Timeout(2*time.Minute))
    
    			// Update use-waypoint for Captured service
    			SetWaypoint(t, Captured, "simple-http-waypoint")
    
    			// ensure HTTP traffic works with all hostname variants
    			for _, src := range apps.All {
    				src := src
    				if !hboneClient(src) {
    					// TODO if we hairpinning, don't skip here
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateTransformEinsumPass();
    
    // Optimizes Tensorflow graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTFOptimizePass();
    void RegisterTFOptimizePassPipeline();
    
    // Creates pass to rewrite RecvTPUEmbeddingActivationsOp and
    // SendTPUEmbeddingGradients ops to internal variants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/main/resources/header.html

                        <ul id="modeling-features">
                            <li><a href="../userguide/component_capabilities.html">Declaring Capabilities of a Library</a></li>
                            <li><a href="../userguide/feature_variants.html">Modeling Feature Variants and Optional Dependencies</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func libfuzzerHookEqualFold(string, string, uint)
    
    func addCovMeta(p unsafe.Pointer, len uint32, hash [16]byte, pkpath string, pkgId int, cmode uint8, cgran uint8) uint32
    
    // architecture variants
    var x86HasPOPCNT bool
    var x86HasSSE41 bool
    var x86HasFMA bool
    var armHasVFPv4 bool
    var arm64HasATOMICS bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/crypto/tls/tls.go

    // and TLS 1.3, as specified in RFC 8446.
    package tls
    
    // BUG(agl): The crypto/tls package only implements some countermeasures
    // against Lucky13 attacks on CBC-mode encryption, and only on SHA1
    // variants. See http://www.isg.rhul.ac.uk/tls/TLStiming.pdf and
    // https://www.imperialviolet.org/2013/02/04/luckythirteen.html.
    
    import (
    	"bytes"
    	"context"
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/rsa"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    	chacha20Poly1305ID,
    	"aes128-ctr", "aes192-ctr", "aes256-ctr",
    }
    
    // supportedMACs specifies a default set of MAC algorithms in preference order.
    // This is based on RFC 4253, section 6.4, but with hmac-md5 variants removed
    // because they have reached the end of their useful life.
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=85
    var supportedMACs = []string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top