Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 291 for dotpath (0.12 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    }
    
                    final String dataPath = getResourcePath(indexConfigPath, fessConfig.getFesenType(), "/" + index + "/" + docType + ".bulk");
                    if (ResourceUtil.isExist(dataPath)) {
                        insertBulkData(fessConfig, indexName, dataPath);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

            }
    
            return new Path(Arrays.copyOfRange(segments, n, segments.length), absolute);
        }
    
        public String segment(int index) {
            if (index < 0 || index >= segments.length) {
                throw new IllegalArgumentException("Segment index " + index + " is invalid for path " + getPath());
            }
    
            return segments[index];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

        }
    
        private RuntimeException throwTaskSelectionException(SelectionContext context, ProjectState targetProject, String taskName, boolean includeSubprojects, NameMatcher matcher) {
            String searchContext = getSearchContext(targetProject, includeSubprojects);
    
            if (context.getOriginalPath().getPath().equals(taskName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/volume/nfs/nfs.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/recyclerclient"
    )
    
    func getPath(uid types.UID, volName string, host volume.VolumeHost) string {
    	return host.GetPodVolumeDir(uid, utilstrings.EscapeQualifiedName(nfsPluginName), volName)
    }
    
    // ProbeVolumePlugins is the primary entrypoint for volume plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/ToolingModelBuilderSupport.java

    public abstract class ToolingModelBuilderSupport {
        public static <T extends LaunchableGradleTask> T buildFromTask(T target, DefaultProjectIdentifier projectIdentifier, Task task) {
            target.setPath(task.getPath())
                    .setName(task.getName())
                    .setGroup(task.getGroup())
                    .setDisplayName(task.toString())
                    .setDescription(task.getDescription())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:26:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SingletonChildMap.java

                }
    
                @Override
                public ChildMap<RESULT> withReplacedChild(RESULT newChild) {
                    return withReplacedChild(entry.getPath(), newChild);
                }
    
                @Override
                public ChildMap<RESULT> withReplacedChild(String newChildPath, RESULT newChild) {
                    return getChildMap().withReplacedChild(newChildPath, newChild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

            def listener2 = allAcceptingListener()
            def listener3 = allAcceptingListener()
            def a = node("a")
            def b = node("b")
    
            given:
            listener2.getPath() >> b.path
            listener3.getPath() >> b.path
    
            when:
            graph.add(a)
            graph.addListener(listener1)
            graph.add(b)
    
            then:
            1 * listener1.onDiscovered(graph.root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/DefaultGradleProject.java

            this.children = ImmutableList.copyOf(children); // also ensures it's serializable
            return this;
        }
    
        public String getPath() {
            return projectIdentifier.getProjectPath();
        }
    
        public DefaultProjectIdentifier getProjectIdentifier() {
            return projectIdentifier;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/io/FileUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testReadUTF8() throws Exception {
            assertThat(FileUtil.readUTF8(getPath("hoge_utf8.txt")), is("あ"));
        }
    
        private String getPath(final String fileName) {
            return getClass().getName().replace('.', '/').replaceFirst(getClass().getSimpleName(), fileName);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. 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)
Back to top