Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 198 for shadow_ (0.26 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

         */
        JvmEcosystemAttributesDetails withEmbeddedDependencies();
    
        /**
         * Provides or requires a component which dependencies are bundled as part
         * of the main artifact in a relocated/shadowed form
         */
        JvmEcosystemAttributesDetails withShadowedDependencies();
    
        /**
         * Provides or requires a complete component (jar) and not just the classes or
         * resources
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    	VS46
    	VS47
    	VS48
    	VS49
    	VS50
    	VS51
    	VS52
    	VS53
    	VS54
    	VS55
    	VS56
    	VS57
    	VS58
    	VS59
    	VS60
    	VS61
    	VS62
    	VS63
    	A0 // MMA registers.  These are effectively shadow registers of four adjacent VSR's [An*4,An*4+3]
    	A1
    	A2
    	A3
    	A4
    	A5
    	A6
    	A7
    )
    
    func (Reg) IsArg() {}
    func (r Reg) String() string {
    	switch {
    	case R0 <= r && r <= R31:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ibleChange_.bind(this),true);const createShadowRoot=this.createShadowRoot||this.webkitCreateShadowRoot;this.shadow_=createShadowRoot.call(this);Polymer.dom(this.shadow_).appendChild(tr.ui.b.instantiateTemplate('#overlay-template',THIS_DOC));this.closeBtn_=Polymer.dom(this.shadow_).querySelector('close-button');this.closeBtn_.addEventListener('click',this.onClose_);Polymer.dom(this.shadow_).querySelector('overlay-frame').addEventListener('click',this.onClick_);this.observer_=new MutationObserver(...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmEcosystemAttributesDetails.java

            return this;
        }
    
        @Override
        public JvmEcosystemAttributesDetails withShadowedDependencies() {
            attributes.attribute(BUNDLING_ATTRIBUTE, objectFactory.named(Bundling.class, Bundling.SHADOWED));
            return this;
        }
    
        @Override
        public JvmEcosystemAttributesDetails asJar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

         *
         * This test exercises the current behavior.
         */
        @Test
        fun `location of exception thrown by groovy script applied from kotlin script shadowed by the kotlin location`() {
    
            val kotlinScript = withBuildScript("""apply(from = "other.gradle")""")
            withFile(
                "other.gradle",
                """
                println("In Groovy Script")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https03.drawio

        <diagram id="jyERGzDynktFHFRGN0ph" name="Page-1">
            <mxGraphModel dx="2481" dy="1867" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1920" pageHeight="1200" math="0" shadow="0">
                <root>
                    <mxCell id="0"/>
                    <mxCell id="1" parent="0"/>
                    <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. docs/en/docs/img/deployment/https/https04.drawio

        <diagram id="jyERGzDynktFHFRGN0ph" name="Page-1">
            <mxGraphModel dx="2312" dy="1667" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1920" pageHeight="1200" math="0" shadow="0">
                <root>
                    <mxCell id="0"/>
                    <mxCell id="1" parent="0"/>
                    <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleResolveMetadataSerializationHelper.java

            encoder.writeSmallInt(capabilitiesSet.size());
            for (Capability capability : capabilitiesSet) {
                boolean shadowed = capability instanceof ShadowedCapability;
                if (shadowed) {
                    ShadowedCapability shadowedCapability = (ShadowedCapability) capability;
                    encoder.writeNullableString(shadowedCapability.getAppendix());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/bcache/cache.go

    package bcache
    
    import (
    	"sync/atomic"
    	"unsafe"
    )
    
    // A Cache is a GC-friendly concurrent map from unsafe.Pointer to
    // unsafe.Pointer. It is meant to be used for maintaining shadow
    // BoringCrypto state associated with certain allocated structs, in
    // particular public and private RSA and ECDSA keys.
    //
    // The cache is GC-friendly in the sense that the keys do not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/examples/methods.go

    // Note that using what looks like a predeclared identifier, say int,
    // as type parameter in this situation is deceptive and considered bad
    // style. In m3 below, int is the name of the local receiver type parameter
    // and it shadows the predeclared identifier int which then cannot be used
    // anymore as expected.
    // This is no different from locally re-declaring a predeclared identifier
    // and usually should be avoided. There are some notable exceptions; e.g.,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top