Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 159 for parentuid (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            );
    
                            if (start.parentId == null) {
                                roots.add(record);
                            } else {
                                List<BuildOperationRecord> parentChildren = childrens.get(start.parentId);
                                if (parentChildren != null) {
                                    parentChildren.add(record);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsDataService.java

            final SearchResponse response = getClient().get(c -> {
                final SearchRequestBuilder builder = c.prepareSearch(index);
                callback.accept(builder);
                builder.setFetchSource(new String[] { "parentUrl", "method", "mimeType", "sessionId", "url", "executionTime", "createTime",
                        "contentLength", "lastModified", "ruleId", "httpStatusCode", "status" }, null);
                return builder.execute();
            });
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

            lock.lock();
            try {
                scripts.clear();
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @javax.annotation.Nullable ClassLoaderScopeOrigin origin) {
            if (origin instanceof ClassLoaderScopeOrigin.Script) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

            "type": "date",
            "format": "date_optional_time"
          },
          "location": {
            "type": "geo_point"
          },
          "mimetype": {
            "type": "keyword"
          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. src/internal/trace/event.go

    		panic("Task called on non-Task event")
    	}
    	parentID := NoTask
    	var typ string
    	switch e.base.typ {
    	case go122.EvUserTaskBegin:
    		parentID = TaskID(e.base.args[1])
    		typ = e.table.strings.mustGet(stringID(e.base.args[2]))
    	case go122.EvUserTaskEnd:
    		parentID = TaskID(e.base.extra(version.Go122)[0])
    		typ = e.table.getExtraString(extraStringID(e.base.extra(version.Go122)[1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/runtime/defs_freebsd_amd64.go

    type thrparam struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack_base uintptr
    	stack_size uintptr
    	tls_base   unsafe.Pointer
    	tls_size   uintptr
    	child_tid  unsafe.Pointer // *int64
    	parent_tid *int64
    	flags      int32
    	pad_cgo_0  [4]byte
    	rtp        *rtprio
    	spare      [3]uintptr
    }
    
    type thread int64 // long
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.9K bytes
    - Viewed (1)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                    }).collect(Collectors.toList());
            urlQueueService.offerAll(crawlerContext.sessionId, childList);
        }
    
        protected void storeChildUrl(final String childUrl, final String parentUrl, final String metaData, final int depth) {
            if (crawlerContext.getMaxDepth() >= 0 && depth > crawlerContext.getMaxDepth()) {
                return;
            }
    
            // add url and filter
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

        private Path assignPath(BuildState owner, String name, File dir) {
            // Get the closest ancestor build of the build directory which we are currently adding
            Optional<Map.Entry<File, NestedBuildState>> parentBuild = nestedBuildsByRootDir.entrySet().stream()
                .filter(entry -> isPrefix(entry.getKey(), dir))
                .reduce((a, b) -> isPrefix(a.getKey(), b.getKey())
                    ? b
                    : a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                RenderDataUtil.register(data, "path", path);
                RenderDataUtil.register(data, "pathItems", createPathItems(path));
                RenderDataUtil.register(data, "parentId", createParentId(path));
                RenderDataUtil.register(data, "fileItems", getFileItems(path));
            });
        }
    
        private HtmlResponse asEditTagsHtml(final String path, final String name) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top