Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for pathconf (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            //
            // Derive these from the URL
            //
            this.protocol = protocol(url);
            this.basedir = basedir(url);
        }
    
        public String pathOf(Artifact artifact) {
            return layout.pathOf(artifact);
        }
    
        public String pathOfRemoteRepositoryMetadata(ArtifactMetadata artifactMetadata) {
            return layout.pathOfRemoteRepositoryMetadata(artifactMetadata);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 11K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java

        }
    
        public String getId() {
            return userLocalArtifactRepository.getId();
        }
    
        @Override
        public String pathOf(Artifact artifact) {
            return userLocalArtifactRepository.pathOf(artifact);
        }
    
        @Override
        public String getBasedir() {
            return (userLocalArtifactRepository != null) ? userLocalArtifactRepository.getBasedir() : null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/cpp_generator_test.cc

          "VarHandleOp",                          // type, shape, list(string) attrs
          "RestoreV2",  // Variadic output-only, list(type) attr
      };
    
      cpp::CppConfig cpp_config(category, name_space);
      PathConfig controller_config(output_dir, source_dir, api_dirs, ops);
      CppGenerator generator(cpp_config, controller_config);
    
      Env *env = Env::Default();
      string golden_dir = io::JoinPath(testing::TensorFlowSrcRoot(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 18 17:02:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/sds/sdsservice.go

    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			}
    		case *mesh.PrivateKeyProvider_Qat:
    			qatConf := pkpConf.GetQat()
    			msg := protoconv.MessageToAny(&qat.QatPrivateKeyMethodConfig{
    				PollDelay: durationpb.New(time.Duration(qatConf.GetPollDelay().Nanos)),
    				PrivateKey: &core.DataSource{
    					Specifier: &core.DataSource_InlineBytes{
    						InlineBytes: s.PrivateKey,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

                            request.getArtifact().getVersion());
                    File pomFile = new File(
                            request.getLocalRepository().getBasedir(),
                            request.getLocalRepository().pathOf(pomArtifact));
    
                    try {
                        Model model = modelReader.read(pomFile, null).getDelegate();
    
                        dependencies = Dependency.dependencyToApiV3(model.getDependencies());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds.go

    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			},
    		})
    	case *mesh.PrivateKeyProvider_Qat:
    		qatConf := pkpConf.GetQat()
    		msg := protoconv.MessageToAny(&qat.QatPrivateKeyMethodConfig{
    			PollDelay: durationpb.New(time.Duration(qatConf.GetPollDelay().Nanos)),
    			PrivateKey: &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    					InlineBytes: certInfo.Key,
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/controller.cc

    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/path.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace generator {
    
    Controller::Controller(PathConfig path_config, Env* env)
        : env_(env), path_config_(path_config) {
      // Load the Op and API definitions
      InitializeOpApi();
    
      // Convert the Op and API definitions to the internal data model
      BuildModel();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout.java

     */
    @Deprecated
    public interface ArtifactRepositoryLayout {
        String ROLE = ArtifactRepositoryLayout.class.getName();
    
        String getId();
    
        String pathOf(Artifact artifact);
    
        String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository);
    
        String pathOfRemoteRepositoryMetadata(ArtifactMetadata metadata);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/layout/FlatRepositoryLayout.java

        private static final char ARTIFACT_SEPARATOR = '-';
    
        private static final char GROUP_SEPARATOR = '.';
    
        public String getId() {
            return "flat";
        }
    
        public String pathOf(Artifact artifact) {
            ArtifactHandler artifactHandler = artifact.getArtifactHandler();
    
            StringBuilder path = new StringBuilder(128);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/artifact/deployer/ArtifactDeployerTest.java

                ArtifactRepository remoteRepository = remoteRepository();
                File deployedFile = new File(remoteRepository.getBasedir(), remoteRepository.pathOf(artifact));
                assertTrue(deployedFile.exists());
                assertEquals("dummy", new String(Files.readAllBytes(deployedFile.toPath()), StandardCharsets.UTF_8).trim());
            } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top