Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 766 for setPath (1.29 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetNodeInitializerExtractionStrategy.java

                ModelType<ModelSet<T>> setType = ModelTypes.modelSet(elementType);
                DefaultModelViewState state = new DefaultModelViewState(modelNode.getPath(), setType, ruleDescriptor, mutable, !mutable);
                ChildNodeInitializerStrategy<T> childStrategy = Cast.uncheckedCast(modelNode.getPrivateData(ChildNodeInitializerStrategy.class));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

                    if (nameLink == null) {
                        throw new IllegalStateException("expected name node for " + modelNode.getPath());
                    }
                    nameLink.setPrivateData(ModelType.of(String.class), modelNode.getPath().getName());
                }
            }
        }
    
        private <P> void addPropertyLink(MutableModelNode modelNode,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                }
            }
            File destinationDir = spec.getDestinationDir();
            if (destinationDir != null) {
                args.add("-d");
                args.add(destinationDir.getPath());
            }
            if (compileOptions.isVerbose()) {
                args.add("-verbose");
            }
            if (compileOptions.isDeprecation()) {
                args.add("-deprecation");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

         */
        @Nonnull
        private TestFile fromWithinJar(URL resourceUrl) throws IOException {
            int indexOfJarSeparator = resourceUrl.getPath().indexOf("!/");
            String jarFilePath = resourceUrl.getPath().substring(5, indexOfJarSeparator);
            String jarFileName = new File(jarFilePath).getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java

                        syncContext.acquire(null, Collections.singleton(metadata));
    
                        if (metadata.getPath() != null && Files.exists(metadata.getPath())) {
                            try (InputStream in = Files.newInputStream(metadata.getPath())) {
                                versioning = new Versioning(
                                        new MetadataStaxReader().read(in, false).getVersioning());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ProjectBuilderRequest {
    
        @Nonnull
        Session getSession();
    
        @Nonnull
        Optional<Path> getPath();
    
        @Nonnull
        Optional<Source> getSource();
    
        boolean isAllowStubModel();
    
        boolean isRecursive();
    
        boolean isProcessPlugins();
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer.go

    	GetVerb() string
    	IsReadOnly() bool
    	GetNamespace() string
    	GetResource() string
    	GetSubresource() string
    	GetName() string
    	GetAPIGroup() string
    	GetAPIVersion() string
    	IsResourceRequest() bool
    	GetPath() string
    })(nil)
    
    // The user info accessors known to cache key construction. If this fails to compile, the cache
    // implementation may need to be updated.
    var _ user.Info = (interface {
    	GetName() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPlugin.java

                    });
                    cppLibrary.getBinaries().whenElementFinalized(CppStaticLibrary.class, library -> {
                        extension.getProjectRegistry().addProjectConfiguration(new CppStaticLibraryVisualStudioTargetBinary(project.getName(), project.getPath(), cppLibrary, library, project.getLayout()));
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalFileLocation.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol.problem;
    
    public interface InternalFileLocation extends InternalLocation {
    
        String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 762 bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir.go

    		}
    	}
    
    	return nil
    }
    
    func (ed *emptyDir) GetPath() string {
    	return getPath(ed.pod.UID, ed.volName, ed.plugin.host)
    }
    
    // TearDown simply discards everything in the directory.
    func (ed *emptyDir) TearDown() error {
    	return ed.TearDownAt(ed.GetPath())
    }
    
    // TearDownAt simply discards everything in the directory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top