Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 198 for shadow_ (0.2 sec)

  1. docs/en/docs/img/deployment/https/https01.drawio

        <diagram id="jyERGzDynktFHFRGN0ph" name="Page-1">
            <mxGraphModel dx="2738" dy="2173" 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"/>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/style.css

    .configuration h3.closed  ins {
        background-position: 0 0;
    }
    #dependencies {
        margin-right: 30px;
    }
    #insight {
        position: fixed;
        right: 50px;
        top: 50px;
        display: none;
        width: 70%;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    }
    #dismissInsight {
        float: right;
        background:url("../images/d.png") -18px -53px no-repeat !important;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:31 UTC 2014
    - 2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

                (BUNDLING_ATTRIBUTE): named(Bundling, SHADOWED)
            ]
    
            when:
            services.configureAttributes(Stub(HasConfigurableAttributes) { getAttributes() >> attrs }) {
                it.withTargetJvmVersion(15)
            }
    
            then:
            attrs.asMap() == [
                (USAGE_ATTRIBUTE): named(Usage, JAVA_RUNTIME),
                (BUNDLING_ATTRIBUTE): named(Bundling, SHADOWED),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

        font-weight: 300;
        word-break: normal
    }
    
    pre {
        margin: 1em;
        max-height: 31em;
        border: 1px solid #777;
        border-left: 5px solid #777;
        border-radius: 4px;
        box-shadow: 3px 3px 8px #777;
        font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
        text-align: left;
        white-space: pre;
        word-spacing: normal;
        word-break: normal;
        word-wrap: normal;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. common/config/tslint.json

            "no-consecutive-blank-lines": true,
            "no-console": {
                "severity": "warning",
                "options": ["debug", "info", "log", "time", "timeEnd", "trace"]
            },
            "no-shadowed-variable": false,
            "eofline": false
        },
        "jsRules": {},
        "rulesDirectory": []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 631 bytes
    - Viewed (0)
  6. okcurl/build.gradle.kts

    import org.apache.tools.ant.taskdefs.condition.Os
    
    plugins {
      kotlin("jvm")
      id("org.jetbrains.dokka")
      id("com.vanniktech.maven.publish.base")
      id("com.palantir.graal")
      id("com.github.johnrengelman.shadow")
    }
    
    val copyResourcesTemplates = tasks.register<Copy>("copyResourcesTemplates") {
      from("src/main/resources-templates")
      into("$buildDir/generated/resources-templates")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/go/doc/testdata/generics.go

    func (t Type[c]) MethodC() {}
    
    // Constraint is a constraint interface with two type parameters.
    type Constraint[P, Q interface{ string | ~int | Type[int] }] interface {
    	~int | ~byte | Type[string]
    	M() P
    }
    
    // int16 shadows the predeclared type int16.
    type int16 int
    
    // NewEmbeddings demonstrates how we filter the new embedded elements.
    type NewEmbeddings interface {
    	string // should not be filtered
    	int16
    	struct{ f int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. okhttp-android/src/test/kotlin/okhttp3/android/AndroidLoggingTest.kt

    import okhttp3.logging.HttpLoggingInterceptor
    import okhttp3.logging.LoggingEventListener
    import org.junit.Test
    import org.junit.runner.RunWith
    import org.robolectric.RobolectricTestRunner
    import org.robolectric.shadows.ShadowLog
    
    @RunWith(RobolectricTestRunner::class)
    class AndroidLoggingTest {
      val clientBuilder =
        OkHttpClient.Builder()
          .connectionSpecs(listOf(ConnectionSpec.CLEARTEXT))
          .dns {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. test/typeparam/nested.go

    //		type T[B intish] struct{}
    //
    //		// store reflect.Type tuple (A, B, F[A].T[B]) in tests
    //	}
    //
    // It then instantiates this function with a variety of type arguments
    // for A and B. Particularly tricky things like shadowed types.
    //
    // From this data it tests two things:
    //
    // 1. Given tuples (A, B, F[A].T[B]) and (A', B', F[A'].T[B']),
    //    F[A].T[B] should be identical to F[A'].T[B'] iff (A, B) is
    //    identical to (A', B').
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:23:27 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/vet.test

        --- PASS: TestVet/3 (0.07s)
            vet_test.go:114: files: ["testdata/composite.go" "testdata/nilfunc.go"]
        --- PASS: TestVet/6 (0.07s)
            vet_test.go:114: files: ["testdata/copylock_range.go" "testdata/shadow.go"]
        --- PASS: TestVet/2 (0.07s)
            vet_test.go:114: files: ["testdata/bool.go" "testdata/method.go" "testdata/unused.go"]
        --- PASS: TestVet/0 (0.13s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.1K bytes
    - Viewed (0)
Back to top