Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 524 for unprocessed (0.37 sec)

  1. src/html/template/escape.go

    		}
    		e.editTextNode(n, b.Bytes())
    	}
    	return c
    }
    
    // contextAfterText starts in context c, consumes some tokens from the front of
    // s, then returns the context after those tokens and the unprocessed suffix.
    func contextAfterText(c context, s []byte) (context, int) {
    	if c.delim == delimNone {
    		c1, i := tSpecialTagEnd(c, s)
    		if i == 0 {
    			// A special end tag (`</script>`) has been seen and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    crawler.document.cache.html.mimetypes=text/html
    
    # indexer
    indexer.thread.dump.enabled=true
    indexer.unprocessed.document.size=1000
    indexer.click.count.enabled=true
    indexer.favorite.count.enabled=true
    indexer.webfs.commit.margin.time=5000
    indexer.webfs.max.empty.list.count=3600
    indexer.webfs.update.interval=10000
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	// Hostnames is the hostnames that must be match to reference to the parent. For gateway this is listener hostname
    	// Format is ns/hostname
    	Hostnames []string
    	// OriginalHostname is the unprocessed form of Hostnames; how it appeared in users' config
    	OriginalHostname string
    
    	// AttachedRoutes keeps track of how many routes are attached to this parent. This is tracked for status.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    func (tr *TypeRepr) Empty() bool {
    	return len(tr.Repr) == 0
    }
    
    // Set modifies the type representation.
    // If fargs are provided, repr is used as a format for fmt.Sprintf.
    // Otherwise, repr is used unprocessed as the type representation.
    func (tr *TypeRepr) Set(repr string, fargs ...interface{}) {
    	tr.Repr = repr
    	tr.FormatArgs = fargs
    }
    
    // FinishType completes any outstanding type mapping work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'indexer.unprocessed.document.size'. <br>
         * The value is, e.g. 1000 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexerUnprocessedDocumentSize();
    
        /**
         * Get the value for the key 'indexer.unprocessed.document.size' as {@link Integer}. <br>
         * The value is, e.g. 1000 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	} else if dswp.podHasBeenSeenOnce(uniquePodName) {
    		// For the Pod which has been processed at least once, even though some volumes
    		// may not have been reprocessed successfully this round, we still mark it as processed to avoid
    		// processing it at a very high frequency. The pod will be reprocessed when volume manager calls
    		// ReprocessPod() which is triggered by SyncPod.
    		dswp.markPodProcessed(uniquePodName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	// already set, depending on the configuration of the
    	// Server. It is the caller's responsibility to set
    	// or clear those deadlines as needed.
    	//
    	// The returned bufio.Reader may contain unprocessed buffered
    	// data from the client.
    	//
    	// After a call to Hijack, the original Request.Body must not
    	// be used. The original Request's Context remains valid and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     *                 targetFile.text = change.file.text.reverse()
     *             }
     *         }
     *     }
     * }
     * </pre>
     *
     * <p>
     * In the case where Gradle is unable to determine which input files need to be reprocessed, then all of the input files will be reported as {@link ChangeType#ADDED}.
     * When such a full rebuild happens, the output files of the work are removed prior to executing the work action.
     * Cases where this occurs include:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

            WorkerConfig processed = new WorkerConfigSerializer().read(decoder)
    
            then:
            processed.logLevel == original.logLevel
            processed.shouldPublishJvmMemoryInfo() == original.shouldPublishJvmMemoryInfo()
            processed.gradleUserHomeDirPath == original.gradleUserHomeDirPath
            processed.serverAddress == original.serverAddress
            processed.workerId == original.workerId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    			})
    		}
    	}
    	drainWorkers(podWorkers, numPods)
    
    	if len(processed) != numPods {
    		t.Fatalf("Not all pods processed: %v", len(processed))
    	}
    	for i := 0; i < numPods; i++ {
    		uid := types.UID(strconv.Itoa(i))
    		events := processed[uid]
    		if len(events) < 1 || len(events) > i+1 {
    			t.Errorf("Pod %v processed %v times", i, len(events))
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top