Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for isPath (0.29 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                            if (!candidate.equals(firstInPath)) {
                                // Not the first g++ in the path, needs the path variable updated
                                clang.inPath(candidate.getParentFile());
                            }
                            toolChains.add(clang);
                        }
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionResultExecTaskIntegrationTest.groovy

                task run(type: Exec) {
                    dependsOn(compileJava)
                    executable = ${Jvm.canonicalName}.current().javaExecutable
                    args '-cp', project.layout.files(compileJava).asPath, 'driver.Driver', "1"
                }
            """
        }
    
        @Override
        protected void writeSucceedingExec() {
            mainJavaFile = file('src/main/java/Driver.java')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 06 18:16:31 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    	// does not use the established test group pattern
    	inPath := filepath.Join(testDataDir, "input/all_on.yaml")
    	got1, err := runManifestGenerate([]string{inPath}, "", snapshotCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	got2, err := runManifestGenerate([]string{inPath}, "", snapshotCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if got1 != got2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/FreefairAspectJPluginSmokeTest.groovy

                    id "java-library"
                    id "io.freefair.aspectj" version "${TestedVersions.aspectj}"
                }
    
                ${mavenCentralRepository()}
    
                dependencies {
                    inpath "org.apache.httpcomponents:httpcore-nio:4.4.11"
                    implementation "org.aspectj:aspectjrt:1.9.7"
    
                    testImplementation "junit:junit:4.13"
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionResultExecTaskDeprecationIntegrationTest.groovy

                task run(type: Exec) {
                    dependsOn(compileJava)
                    executable = ${Jvm.canonicalName}.current().javaExecutable
                    args '-cp', project.layout.files(compileJava).asPath, 'driver.Driver', "1"
                }
            """
        }
    
        @Override
        protected void writeSucceedingExec() {
            mainJavaFile = file('src/main/java/Driver.java')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 19 12:38:37 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

            }
    
            // Convert the collection to various types
            val set: Set<File> = collection.files
            val list: List<File> = collection.toList()
            val path: String = collection.asPath
            val file: File = collection.singleFile
    
            // Add and subtract collections
            val union = collection + projectLayout.files("src/file2.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

            }
    
            // Convert the collection to various types
            Set set = collection.files
            Set set2 = collection as Set
            List list = collection as List
            String path = collection.asPath
            File file = collection.singleFile
    
            // Add and subtract collections
            def union = collection + projectLayout.files('src/file2.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

     */
    package org.gradle.util.internal
    
    import spock.lang.Specification
    
    import java.nio.CharBuffer
    
    import static org.gradle.util.internal.GUtil.addToCollection
    import static org.gradle.util.internal.GUtil.asPath
    import static org.gradle.util.internal.GUtil.collectionize
    import static org.gradle.util.internal.GUtil.endsWith
    import static org.gradle.util.internal.GUtil.flatten
    import static org.gradle.util.internal.GUtil.flattenElements
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeMatcher.java

            public AttributeValue<T> getRequestedValue() {
                return requestedValue;
            }
    
            public AttributeValue<T> getFound() {
                return found;
            }
    
            public boolean isMatch() {
                return match;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererOtherModifiersProvider.kt

                    if (symbol is KaNamedClassOrObjectSymbol) {
                        if (symbol.isExternal) add(KtTokens.EXTERNAL_KEYWORD)
                        if (symbol.isInline) add(KtTokens.INLINE_KEYWORD)
                        if (symbol.isData) add(KtTokens.DATA_KEYWORD)
                        if (symbol.isFun) add(KtTokens.FUN_KEYWORD)
                        if (symbol.isInner) add(KtTokens.INNER_KEYWORD)
                    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top