Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for polygon (0.19 sec)

  1. pkg/ctrlz/assets/templates/modules/header.html

                <span class="logo">
                    <svg viewBox="0 0 300 300">
                        <circle cx="150" cy="150" r="150" stroke-width="2" />
                        <polygon points="65,240 225,240 125,270"/>
                        <polygon points="65,230 125,220 125,110"/>
                        <polygon points="135,220 225,230 135,30"/>
                    </svg>
                </span>
                <span class="brand-name">Istio ControlZ [{{ template "instance" }}]</span>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 682 bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractPolyglotIntegrationSpec.groovy

     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.transform.CompileStatic
    import org.gradle.integtests.fixtures.polyglot.PolyglotDslTest
    import org.gradle.integtests.fixtures.polyglot.PolyglotDslTestInterceptor
    import org.gradle.integtests.fixtures.polyglot.MultiProjectBuilder
    
    /**
     * An integration test which allows testing build scripts with both the
     * Groovy and Kotlin DSLs
     */
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/ConstraintsBuilder.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    
    @CompileStatic
    class ConstraintsBuilder extends AbstractDependenciesBuilder {
        @Override
        String getSectionName() {
            'constraints'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 857 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/SectionBuilder.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import org.gradle.test.fixtures.dsl.GradleDsl
    
    interface SectionBuilder {
        String generateSection(GradleDsl dsl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 784 bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/GenericSection.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    
    import java.util.function.Supplier
    
    @CompileStatic
    class GenericSection extends AbstractSection {
        private final Supplier<String> groovyCode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/PolyglotDslTestExtension.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot;
    
    import org.gradle.integtests.fixtures.extensions.AbstractMultiTestInterceptor;
    import org.gradle.integtests.fixtures.extensions.MultiTestExtension;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/RepositoriesBuilder.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    import org.gradle.test.fixtures.dsl.GradleDsl
    
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/MultiProjectBuilder.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    import org.gradle.test.fixtures.dsl.GradleDsl
    import org.gradle.test.fixtures.file.TestFile
    import static org.gradle.integtests.fixtures.polyglot.BuilderSupport.applyConfiguration
    
    @CompileStatic
    class MultiProjectBuilder {
        private final GradleDsl dsl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/AbstractSection.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    import org.gradle.test.fixtures.dsl.GradleDsl
    
    @CompileStatic
    abstract class AbstractSection implements SectionBuilder {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/VersionSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.polyglot
    
    import groovy.transform.CompileStatic
    
    @CompileStatic
    class VersionSpec extends MultiSectionHandler {
    
        @Override
        String getSectionName() {
            "version"
        }
    
        void rejectAll() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top