Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 118 for dotpath (0.31 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    indent += "  ";
                }
            } else if (collectStepTrace != null) {
                if (collectStepTrace.getPath().get(0).getArtifact() == null) {
                    return;
                }
                baseName = ArtifactIdUtils.toId(collectStepTrace.getPath().get(0).getArtifact())
                        .replace(":", "_");
                trackingFile = trackingDir.resolve(baseName + ext);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    
    def _copy_assets(src_path: str, dst_path: str) -> None:
      """Copies the assets directory of the saved model.
    
      Clones the contents of the assets/ directory from the source saved model
      directory to the destination saved model directory. Nothing will be copied if
      there are no assets directory in the source directory.
    
      Args:
        src_path: Source saved model directory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. pkg/volume/downwardapi/downwardapi.go

    )
    
    // downwardAPIPlugin implements the VolumePlugin interface.
    type downwardAPIPlugin struct {
    	host volume.VolumeHost
    }
    
    var _ volume.VolumePlugin = &downwardAPIPlugin{}
    
    func getPath(uid types.UID, volName string, host volume.VolumeHost) string {
    	return host.GetPodVolumeDir(uid, utilstrings.EscapeQualifiedName(downwardAPIPluginName), volName)
    }
    
    func wrappedVolumeSpec() volume.Spec {
    	return volume.Spec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pkg/volume/projected/projected.go

    	sources []v1.VolumeProjection
    	podUID  types.UID
    	plugin  *projectedPlugin
    	volume.MetricsProvider
    }
    
    var _ volume.Volume = &projectedVolume{}
    
    func (sv *projectedVolume) GetPath() string {
    	return getPath(sv.podUID, sv.volName, sv.plugin.host)
    }
    
    type projectedVolumeMounter struct {
    	*projectedVolume
    
    	source v1.ProjectedVolumeSource
    	pod    *v1.Pod
    	opts   *volume.VolumeOptions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

                        ModelReference.of(modelNode.getPath().child(name), type),
                        Factories.constant(instance)
                    )
                    .descriptor(descriptor)
                    .build()
                );
            }
        }
    
        private <S extends T> void doCreate(String name, ModelType<S> type, final DeferredModelAction action) {
            ModelPath childPath = modelNode.getPath().child(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  6. cmd/ftp-server-driver.go

    		return err
    	}
    
    	if prefix == "" {
    		return clnt.MakeBucket(context.Background(), bucket, minio.MakeBucketOptions{Region: globalSite.Region()})
    	}
    
    	dirPath := buildMinioDir(prefix)
    
    	_, err = clnt.PutObject(context.Background(), bucket, dirPath, bytes.NewReader([]byte("")), 0, minio.PutObjectOptions{
    		DisableContentSha256: true,
    	})
    	return err
    }
    
    // GetFile implements ftpDriver
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/switch.go

    	ifNil.Cond = typecheck.DefaultLit(ifNil.Cond, nil)
    	// ifNil.Nbody assigned later.
    	sw.Compiled.Append(ifNil)
    
    	// Load hash from type or itab.
    	dotHash := typeHashFieldOf(base.Pos, srcItab)
    	s.hashName = copyExpr(dotHash, dotHash.Type(), &sw.Compiled)
    
    	// Make a label for each case body.
    	labels := make([]*types.Sym, len(sw.Cases))
    	for i := range sw.Cases {
    		labels[i] = typecheck.AutoLabel(".s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            expect:
            spec.buildRootResolver().destPath == relativeDirectory()
        }
    
        def "into"() {
            when:
            spec.into destDir
    
            then:
            spec.buildRootResolver().destPath == relativeDirectory(*destPath)
    
            where:
            destDir              | destPath
            'spec'               | ['spec']
            '/'                  | [];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_linux_test.go

    				"disk1": kubecontainer.VolumeInfo{BlockVolumeMapper: &stubBlockVolume{dirPath: "/dev/", volName: "sda"}},
    				"disk2": kubecontainer.VolumeInfo{BlockVolumeMapper: &stubBlockVolume{dirPath: "/dev/disk/by-path/", volName: "diskPath"}, ReadOnly: true},
    				"disk3": kubecontainer.VolumeInfo{BlockVolumeMapper: &stubBlockVolume{dirPath: "/dev/disk/by-id/", volName: "diskUuid"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

         */
        @Override
        public AbstractCopyTask into(Object destPath, Closure configureClosure) {
            getMainSpec().into(destPath, configureClosure);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public CopySpec into(Object destPath, Action<? super CopySpec> copySpec) {
            getMainSpec().into(destPath, copySpec);
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top