Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 819 for combinations (0.24 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

            then:
            outputContains("Hello World!")
    
            where:
            [scriptDsl, testFramework] << [ScriptDslFixture.SCRIPT_DSLS, [BuildInitTestFramework.JUNIT, BuildInitTestFramework.TESTNG]].combinations()
        }
    
        def "creates sample source with package and spock and #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

            where:
            [forbiddenType, isolationMode] << [[
                Project, // Not isolated
                ProjectLayout, // Not isolated
                Instantiator, // internal
            ], ISOLATION_MODES].combinations()
        }
    
        def withTestMainParametersAndServices() {
            fixture.workActionThatCreatesFiles.extraFields += """
                org.gradle.process.ExecOperations execOperations
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    //  Bool()                     - Yields sequence {false, true}.
    //  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product
    //                               for the math savvy) of the values generated
    //                               by the N generators.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/mips.s

    	//	}
    	SLL	$4, R1, R2
    
    	//	LSHW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	SLL	$4, R1
    
    	//
    	// move immediate: macro for lui+or, addi, addis, and other combinations
    	//
    	//	LMOVW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	$1, R1
    	MOVW	$1, R1
    
    	//	LMOVW ximm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

                    new MissingBuildInBuildSrc(),
                    new MissingSettingsInBuildSrc(),
                    new MissingBuildInIncluded(),
                    new MissingSettingsInIncluded()
                ]
            ].combinations().collect { ScriptLanguage scriptLanguage, Scenario scenario ->
                new Spec(scriptLanguage, scenario)
            }
        }
    
        private static List<Spec> singleLanguageSpecs() {
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            0 * actionFactory1.createAction(_, _)
            1 * loggingManager.start()
            0 * executionListener._
    
            where:
            options << [['-v', '--version'], ['', '--some-option']].combinations().collect { it.findAll() }
        }
    
        def "displays version message and continues build"() {
            def version = DefaultGradleVersion.current()
            def expectedText = [
                    "",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/topology_hints.go

    		}
    
    		// Finally, check to see if enough available devices remain on the
    		// current NUMA node combination to satisfy the device request.
    		for d := range available {
    			if mask.AnySet(m.getNUMANodeIds(m.allDevices[resource][d].Topology)) {
    				numMatching++
    			}
    		}
    
    		// If they don't, then move onto the next combination.
    		if numMatching < request {
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. internal/lock/lock_windows.go

    	if w == len(`\\?\c:`) {
    		pathbuf[w] = '\\'
    		w++
    	}
    	return string(pathbuf[:w])
    }
    
    // Open - perm param is ignored, on windows file perms/NT acls
    // are not octet combinations. Providing access to NT
    // acls is out of scope here.
    func Open(path string, flag int, perm os.FileMode) (*os.File, error) {
    	if path == "" {
    		return nil, syscall.ERROR_FILE_NOT_FOUND
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/typeparams.go

    func _[T interface{ ~[]int | ~[1]rune }] (x T, i int) { _ = x /* ERROR "cannot index" */ [i] }
    func _[T interface{ ~string | ~[]rune }] (x T, i int) { _ = x /* ERROR "cannot index" */ [i] }
    
    // indexing with various combinations of map types in type sets (see issue #42616)
    func _[T interface{ ~[]E | ~map[int]E }, E any](x T, i int) { _ = x /* ERROR "cannot index" */ [i] } // map and non-map types
    func _[T interface{ ~[]E }, E any](x T, i int) { _ = &x[i] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:56:58 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            1 * snapshot.type >> fileType
            interaction { noMoreInteractions() }
    
            where:
            vfsSpecWithFileType << [COMMON_PREFIX, [FileType.RegularFile, FileType.Directory]].combinations()
            vfsSpec = vfsSpecWithFileType[0] as VirtualFileSystemTestSpec
            fileType = vfsSpecWithFileType[1] as FileType
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top