Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,123 for 20something (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                    @TaskAction
                    void doIt() {
                        assert archiveFileName.get() == "something"
                    }
                }
    
                task myTask(type: MyTask) {
                    conventionMapping('archiveName') { 'not something' }
                    archiveFileName.convention("something")
                }
            """
    
            expect: 'convention mapping is ignored'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4IgnoreClassIntegrationTest.groovy

                @Ignore
                @RunWith(org.gradle.CustomIgnoredTest.TheRunner.class)
                public class CustomIgnoredTest {
                    static int count = 0;
    
                    public boolean doSomething() {
                        return true;
                    }
    
                    public static class TheRunner extends Runner {
                        List descriptions = new ArrayList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogGeneratorTest.groovy

            versionCatalogFile.text == toPlatformLineSeparators("""$COMMON_START
    [versions]
    group-artifact-v5 = "1.1.1"
    junit-something = "4"
    
    [libraries]
    group-artifact-v5 = { module = "group:artifact_5", version.ref = "group-artifact-v5" }
    junit-something = { module = "JUnit:something", version.ref = "junit-something" }
    """)
        }
    
        def "generates plugin"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/arguments_test.go

    				{Name: "allow-privileged", Value: "true"},
    				{Name: "something-that-allows-empty-string", Value: ""},
    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "admission-control", Value: "NamespaceLifecycle,LimitRanger"},
    			},
    			expected: []string{
    				"--admission-control=NamespaceLifecycle,LimitRanger",
    				"--allow-privileged=true",
    				"--something-that-allows-empty-string=",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/grappler/grappler.cc

    ==============================================================================*/
    // This file extends/implements core graph optimizer base classes in terms of
    // the C API defined in grappler.h. A class "CSomething" represents a
    // "Something" that can be manipulated via calls in the C interface and a C
    // struct called "TP_Something".
    
    #include "tensorflow/c/experimental/grappler/grappler.h"
    
    #include <algorithm>
    #include <cstddef>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsEnumAndBooleanCmdOptionValues/build.gradle

    import org.gradle.api.tasks.options.Option
    
    allprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "enumValue", description = "Configures an enum value in CustomTask.")
        public void setEnumValue(TestEnum value) {
        }
    
        @Option(option = "booleanValue", description = "Configures a boolean flag in CustomTask.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 10:43:03 UTC 2023
    - 517 bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasSuffixPatternStepTest.groovy

            step.matches(".java")
            !step.matches("thing.JAVA")
            !step.matches("thing.Java")
            !step.matches("thing.jav")
            !step.matches("thing.c")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasSuffixPatternStep(".java", false)
    
            expect:
            step.matches("thing.java")
            step.matches(".java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/archivesChangedBaseName/kotlin/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  9. src/encoding/gob/gobencdec_test.go

    // Structs that include GobEncodable fields.
    
    type GobTest0 struct {
    	X int // guarantee we have  something in common with GobTest*
    	G *ByteStruct
    }
    
    type GobTest1 struct {
    	X int // guarantee we have  something in common with GobTest*
    	G *StringStruct
    }
    
    type GobTest2 struct {
    	X int    // guarantee we have  something in common with GobTest*
    	G string // not a GobEncoder - should give us errors
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStepTest.groovy

            !step.matches("pre-s")
            !step.matches("suf")
            !step.matches("re-suf")
            !step.matches("e-suf")
            !step.matches("Pre-Suf")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasPrefixAndSuffixPatternStep("pre", "suf", CASE_INSENSITIVE)
    
            expect:
            step.matches("pre-suf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top