Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 159 for parentuid (0.14 sec)

  1. fess-crawler-es/src/main/resources/mapping/queue.json

    {
        "properties": {
          "depth": {
            "type": "integer"
          },
          "parentUrl": {
            "type": "keyword"
          },
          "method": {
            "type": "keyword"
          },
          "createTime": {
            "type": "long"
          },
          "lastModified": {
            "type": "long"
          },
          "sessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          }
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 406 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            // parentId
            String parentUrl = responseData.getParentUrl();
            if (StringUtil.isNotBlank(parentUrl)) {
                parentUrl = pathMappingHelper.replaceUrl(sessionId, parentUrl);
                putResultDataBody(dataMap, fessConfig.getIndexFieldUrl(), parentUrl);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractCopyTaskContractTest.groovy

            execute(task)
    
            then:
            closureInvocation.wasCalled(1)
            closureInvocation.files.contains(fromPropertiesFile)
        }
    
        private static File createDir(File parentDir, String path) {
            TestFile newDir = new TestFile(parentDir, path)
            boolean success = newDir.mkdirs()
    
            if(!success) {
                fail "Failed to create directory $newDir"
            }
    
            newDir
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/CacheLayout.java

            return getName() + "-" + getVersion();
        }
    
        public CacheVersionMapping getVersionMapping() {
            return versionMapping;
        }
    
        public File getPath(File parentDir) {
            return new File(parentDir, getKey());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. fess-crawler-es/src/main/resources/mapping/data.json

    {
        "properties": {
          "parentUrl": {
            "type": "keyword"
          },
          "method": {
            "type": "keyword"
          },
          "mimeType": {
            "type": "keyword"
          },
          "sessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "executionTime": {
            "type": "long"
          },
          "createTime": {
            "type": "long"
          },
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 963 bytes
    - Viewed (0)
  6. src/os/stat_test.go

    		}
    	}
    
    	parentdir, base := filepath.Split(path)
    	if parentdir == "" || base == "" {
    		// skip os.Readdir test of files without directory or file name component,
    		// such as directories with slash at the end or Windows device names.
    		return
    	}
    
    	parent, err := os.Open(parentdir)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	defer parent.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. utils/tests/models.go

    	Coupon   *Coupon
    	CouponID string
    }
    
    type Parent struct {
    	gorm.Model
    	FavChildID uint
    	FavChild   *Child
    	Children   []*Child
    }
    
    type Child struct {
    	gorm.Model
    	Name     string
    	ParentID *uint
    	Parent   *Parent
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            where:
            walkerInstance << walkers
        }
    
        @VisibleForTesting
        static generateFilesAndSubDirectories(File parentDir, int fileCount, int dirCount, int maxDepth, int currentDepth, AtomicInteger fileIdGenerator) {
            for (int i = 0; i < fileCount; i++) {
                def file = new File(parentDir, "file" + fileIdGenerator.incrementAndGet())
                file << ("x" * fileIdGenerator.get())
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                                <tbody>
                                                <c:if test="${not empty path and not empty parentId}">
                                                    <tr data-href="${contextPath}/admin/storage/list/${f:u(data.parentId)}/">
                                                        <td>..</td>
                                                        <td></td>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  10. pkg/kube/client_factory.go

    var overlyCautiousIllegalFileCharacters = regexp.MustCompile(`[^(\w/.)]`)
    
    // computeDiscoverCacheDir takes the parentDir and the host and comes up with a "usually non-colliding" name.
    func computeDiscoverCacheDir(parentDir, host string) string {
    	// strip the optional scheme from host if its there:
    	schemelessHost := strings.Replace(strings.Replace(host, "https://", "", 1), "http://", "", 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top