Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 766 for setPath (0.16 sec)

  1. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsClientTest.groovy

                        def self = it
                        int page = 0
                        int maxPages = 2
                        setPrefix(*_) >> { args ->
                            assert args.get(0).startsWith(uri.getPath().replaceAll("^/+", ''))
                            return self
                        }
                        maxPages * execute() >> {
                            Objects objects = new Objects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/types.go

    		schema.SubSchema().Accept(item)
    	}
    }
    
    func (item *kindItem) VisitKind(schema *openapi.Kind) {
    	subschema, ok := schema.Fields[item.key]
    	if !ok {
    		item.err = FieldNotFoundError{Path: schema.GetPath().String(), Field: item.key}
    		return
    	}
    
    	mergeKey, patchStrategies, err := parsePatchMetadata(subschema.GetExtensions())
    	if err != nil {
    		item.err = err
    		return
    	}
    	item.patchmeta = PatchMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelView.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import org.gradle.model.internal.type.ModelType;
    
    public interface ModelView<T> {
    
        ModelPath getPath();
    
        ModelType<T> getType();
    
        T getInstance();
    
        void close();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 839 bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/FileLocation.java

    /**
     * A file location.
     */
    public interface FileLocation extends ProblemLocation {
    
        /**
         * The path to the file.
         *
         * @return the file path
         */
        String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 850 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CustomModel.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r68;
    
    import java.io.File;
    import java.util.List;
    
    public interface CustomModel {
        String getPath();
    
        List<File> getRuntimeClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 800 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilder.java

            DefaultProjectIdentifier id = new DefaultProjectIdentifier(owner.getBuildRootDir(), project.getProjectPath().getPath());
            BasicGradleProject converted = new BasicGradleProject()
                .setName(project.getName())
                .setProjectIdentifier(id)
                .setBuildTreePath(project.getIdentityPath().getPath())
                .setProjectDirectory(project.getProjectDir());
            if (project.getBuildParent() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/vet/vet_test.go

    	if os.Getenv("GO_VETTEST_IS_VET") != "" {
    		main()
    		os.Exit(0)
    	}
    
    	os.Setenv("GO_VETTEST_IS_VET", "1") // Set for subprocesses to inherit.
    	os.Exit(m.Run())
    }
    
    // vetPath returns the path to the "vet" binary to run.
    func vetPath(t testing.TB) string {
    	t.Helper()
    	testenv.MustHaveExec(t)
    
    	vetPathOnce.Do(func() {
    		vetExePath, vetPathErr = os.Executable()
    	})
    	if vetPathErr != nil {
    		t.Fatal(vetPathErr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainModel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r81;
    
    public interface ToolchainModel {
    
        String getPath();
    
        int getJavaVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 747 bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultFileLocation.java

    public class DefaultFileLocation implements FileLocation, Serializable {
        private final String path;
    
        protected DefaultFileLocation(String path) {
            this.path = path;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        public static FileLocation from(String path) {
            return new DefaultFileLocation(path);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseOutputLocation.java

    public interface EclipseOutputLocation {
    
        /**
         * Returns the project-relative path to the output location.
         *
         * @return The path to the output location. Does not return null.
         */
        String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 955 bytes
    - Viewed (0)
Back to top