Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 249 for qtext (0.04 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	in.token.kind = kind
    	text := string(in.tokenStart[:len(in.tokenStart)-len(in.remaining)])
    	if kind.isComment() {
    		if strings.HasSuffix(text, "\r\n") {
    			text = text[:len(text)-2]
    		} else {
    			text = strings.TrimSuffix(text, "\n")
    		}
    	}
    	in.token.text = text
    	in.token.endPos = in.pos
    }
    
    // peek returns the kind of the next token returned by lex.
    func (in *input) peek() tokenKind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/cmd/trace/tasks.go

    			return task.Complete() && taskInterval(t, task).duration() <= lat
    		})
    	}
    	if text := r.FormValue("logtext"); text != "" {
    		name = append(name, fmt.Sprintf("log contains %q", text))
    		conditions = append(conditions, func(_ *parsedTrace, task *trace.UserTaskSummary) bool {
    			return taskMatches(task, text)
    		})
    	}
    
    	return &taskFilter{name: strings.Join(name, ","), cond: conditions}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

    		"Logging.Options.Text.OutputRoutingOptions.InfoBufferSize.Quantity.Format",
    		"Logging.Options.Text.OutputRoutingOptions.InfoBufferSize.Quantity.d.Dec.scale",
    		"Logging.Options.Text.OutputRoutingOptions.InfoBufferSize.Quantity.d.Dec.unscaled.abs[*]",
    		"Logging.Options.Text.OutputRoutingOptions.InfoBufferSize.Quantity.d.Dec.unscaled.neg",
    		"Logging.Options.Text.OutputRoutingOptions.InfoBufferSize.Quantity.i.scale",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            when:
            file("src/main/java/Hello.java").text = CHANGED_HELLO_WORLD
            then:
            withBuildCache().run "jar" assertTaskNotSkipped ":compileJava" assertTaskNotSkipped ":jar"
    
            when:
            file("src/main/java/Hello.java").text = ORIGINAL_HELLO_WORLD
            then:
            withBuildCache().run "jar"
            result.assertTaskSkipped ":compileJava"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    DATA zosLibVec<>(SB)/8, $0
    GLOBL zosLibVec<>(SB), NOPTR, $8
    
    TEXT ·initZosLibVec(SB), NOSPLIT|NOFRAME, $0-0
    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    	MOVD CAA(R8), R8
    	MOVD EDCHPXV(R8), R8
    	MOVD R8, zosLibVec<>(SB)
    	RET
    
    TEXT ·GetZosLibVec(SB), NOSPLIT|NOFRAME, $0-0
    	MOVD zosLibVec<>(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·clearErrno(SB), NOSPLIT, $0-0
    	BL   addrerrno<>(SB)
    	MOVD $0, 0(R3)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    	< archive/zip, compress/gzip, compress/zlib;
    
    	# templates
    	FMT
    	< text/template/parse;
    
    	net/url, text/template/parse
    	< text/template
    	< internal/lazytemplate;
    
    	# regexp
    	FMT, sort
    	< regexp/syntax
    	< regexp
    	< internal/lazyregexp;
    
    	encoding/json, html, text/template, regexp
    	< html/template;
    
    	# suffix array
    	encoding/binary, regexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                final String text = DocumentUtil.getValue(document, field, String.class);
                if (StringUtil.isNotBlank(text)) {
                    return escapeHighlight(text);
                }
            }
    
            return StringUtil.EMPTY;
        }
    
        protected String escapeHighlight(final String text) {
            final String escaped = LaFunctions.h(text);
            final String value;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. tests/test_security_oauth2_optional_description.py

        assert response.status_code == 200, response.text
        assert response.json() == {"username": "Bearer footokenbar"}
    
    
    def test_security_oauth2_password_other_header():
        response = client.get("/users/me", headers={"Authorization": "Other footokenbar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"username": "Other footokenbar"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stdlib_test.go

    		}
    	}()
    
    	syntax.CommentsDo(src, func(_, _ uint, text string) {
    		if text[0] != '/' {
    			return // not a comment
    		}
    
    		// extract comment text
    		if text[1] == '*' {
    			text = text[:len(text)-2]
    		}
    		text = strings.TrimSpace(text[2:])
    
    		if strings.HasPrefix(text, "go:build ") {
    			panic("skip")
    		}
    		if first == "" {
    			first = text // text may be "" but that's ok
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

        def "restores task fields whose value is a #kind Java lambda"() {
            given:
            file("buildSrc/src/main/java/my/LambdaTask.java").tap {
                parentFile.mkdirs()
                text = """
                    package my;
    
                    import org.gradle.api.*;
                    import org.gradle.api.tasks.*;
    
                    public class LambdaTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top