Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for splitLine (0.27 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                final VaErrorHook hook) {
            return getEntity(form).map(entity -> {
                final String[] newInputs = splitLine(form.inputs);
                validateSynonymString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
                final String[] newOutputs = splitLine(form.outputs);
                validateSynonymString(action, newOutputs, "outputs", hook);
                entity.setNewOutputs(newOutputs);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                final VaErrorHook hook) {
            return getEntity(form).map(entity -> {
                final String[] newInputs = splitLine(form.inputs);
                validateMappingString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
                final String newOutput = form.output;
                entity.setNewOutput(newOutput);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    		h.addSVToMap(newSV)
    	}
    }
    
    func (h *peerProxyHandler) deleteSVFromMap(sv *v1alpha1.StorageVersion) {
    	// The name of storageversion is <group>.<resource>
    	splitInd := strings.LastIndex(sv.Name, ".")
    	group := sv.Name[:splitInd]
    	resource := sv.Name[splitInd+1:]
    
    	gvr := schema.GroupVersionResource{Group: group, Resource: resource}
    	for _, gr := range sv.Status.StorageVersions {
    		for _, version := range gr.ServedVersions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        }
    
        public void setImageExtention(final String imageExtention) {
            this.imageExtention = imageExtention;
        }
    
        public void setSplitSize(final int splitSize) {
            this.splitSize = splitSize;
        }
    
        public void setThumbnailTaskQueueSize(final int thumbnailTaskQueueSize) {
            this.thumbnailTaskQueueSize = thumbnailTaskQueueSize;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/discovery/token/token_test.go

    			}
    			if string(kubeconfigBytes) != expectedKubeconfig {
    				t.Error("unexpected kubeconfig")
    				diff := difflib.UnifiedDiff{
    					A:        difflib.SplitLines(expectedKubeconfig),
    					B:        difflib.SplitLines(string(kubeconfigBytes)),
    					FromFile: "expected",
    					ToFile:   "got",
    					Context:  10,
    				}
    				diffstr, err := difflib.GetUnifiedDiffString(diff)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Splitter.java

     *
     * <p>Splitter instances are thread-safe immutable, and are therefore safe to store as {@code static
     * final} constants.
     *
     * <p>The {@link Joiner} class provides the inverse operation to splitting, but note that a
     * round-trip between the two should be assumed to be lossy.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#splitter">{@code Splitter}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  7. cmd/signature-v2.go

    	}
    
    	// below is V2 Signed Auth header format, splitting on `space` (after the `AWS` string).
    	// Authorization = "AWS" + " " + AWSAccessKeyId + ":" + Signature
    	authFields := strings.Split(r.Header.Get(xhttp.Authorization), " ")
    	if len(authFields) != 2 {
    		return auth.Credentials{}, false, ErrMissingFields
    	}
    
    	// Then will be splitting on ":", this will separate `AWSAccessKeyId` and `Signature` string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/test2json.go

    // does not end in the middle of a possibly-valid UTF-8 sequence.
    //
    // If a large text buffer must be split before position i at the latest,
    // splitting at position trimUTF(b[:i]) avoids splitting a UTF-8 sequence.
    func trimUTF8(b []byte) int {
    	// Scan backward to find non-continuation byte.
    	for i := 1; i < utf8.UTFMax && i <= len(b); i++ {
    		if c := b[len(b)-i]; c&0xc0 != 0x80 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Splitter.java

     *
     * <p>Splitter instances are thread-safe immutable, and are therefore safe to store as {@code static
     * final} constants.
     *
     * <p>The {@link Joiner} class provides the inverse operation to splitting, but note that a
     * round-trip between the two should be assumed to be lossy.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#splitter">{@code Splitter}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                    // After splitting at the JAR separator, it is regarded as a root directory "/java.base".
                    // To work with LibraryPathFilter, a hacky workaround here is to remove "modules/" from actual file path.
                    // e.g. "/path/to/jdk/home!/java.base/java/lang/Object.class", which, from Path viewpoint, belongs to "/java.base",
                    // after splitting at the JAR separator, in a similar way.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top