Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 266 for qtext (0.06 sec)

  1. pilot/pkg/model/telemetry_logging.go

    	}
    
    	return formatters
    }
    
    func accessLogTextFormatters(text string) []*core.TypedExtensionConfig {
    	formatters := make([]*core.TypedExtensionConfig, 0, maxFormattersLength)
    	if strings.Contains(text, reqWithoutQueryCommandOperator) {
    		formatters = append(formatters, reqWithoutQueryFormatter)
    	}
    	if strings.Contains(text, metadataCommandOperator) {
    		formatters = append(formatters, metadataFormatter)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          }
        }
      }
    
      // fitText sets text and font-size clipped to the specified width w.
      function fitText(t, avail, textList) {
        // Find first entry in textList that fits.
        let width = avail;
        textContext.font = FONT_SIZE + 'pt Arial';
        for (let i = 0; i < textList.length; i++) {
          let text = textList[i];
          width = textContext.measureText(text).width;
          if (width <= avail) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            file("build/out.txt").text == "value"
    
            when:
            runWithInput("generate", prompt, "value")
    
            then:
            result.assertTaskSkipped(":generate")
    
            when:
            runWithInput("generate", prompt, "")
    
            then:
            result.assertTaskNotSkipped(":generate")
            file("build/out.txt").text == "<default>"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    |===
    | Reason    | Meaning
    
    | (Absent)
    | No reason other than a reference, direct or transitive, was present.
    
    | Was requested : <text>
    | The dependency appears in the graph, and the inclusion came with a <<declaring_dependencies#sec:documenting-dependencies, `because` text>>.
    
    | Was requested : didn't match versions <versions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/encoding/json/encode_test.go

    	}
    }
    
    // C implements Marshaler and returns unescaped JSON.
    type C int
    
    func (C) MarshalJSON() ([]byte, error) {
    	return []byte(`"<&>"`), nil
    }
    
    // CText implements Marshaler and returns unescaped text.
    type CText int
    
    func (CText) MarshalText() ([]byte, error) {
    	return []byte(`"<&>"`), nil
    }
    
    func TestMarshalerEscaping(t *testing.T) {
    	var c C
    	want := `"\u003c\u0026\u003e"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                    implementation 'org.apache.commons:commons-lang3:3.4'
                    testImplementation 'junit:junit:4.13'
                }
            """
            file('src/main/java/Text.java') << '''import org.apache.commons.lang3.StringUtils;
                public class Text {
                    public static String sayHello(String name) { return "Hello, " + StringUtils.capitalize(name); }
                }
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtool.go

    )
    
    func bootstrapFixImports(srcFile string) string {
    	text := readfile(srcFile)
    	if !strings.Contains(srcFile, "/cmd/") && !strings.Contains(srcFile, `\cmd\`) {
    		text = regexp.MustCompile(`\bany\b`).ReplaceAllString(text, "interface{}")
    	}
    	lines := strings.SplitAfter(text, "\n")
    	inBlock := false
    	inComment := false
    	for i, line := range lines {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    func (r *reader) readNote(list []*ast.Comment) {
    	text := (&ast.CommentGroup{List: list}).Text()
    	if m := noteMarkerRx.FindStringSubmatchIndex(text); m != nil {
    		// The note body starts after the marker.
    		// We remove any formatting so that we don't
    		// get spurious line breaks/indentation when
    		// showing the TODO body.
    		body := clean(text[m[1]:])
    		if body != "" {
    			marker := text[m[2]:m[3]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                final String lowerPath = path.toLowerCase(Locale.ROOT);
                if (lowerPath.endsWith(".html")) {
                    response.setContentType("text/html;charset=utf-8");
                } else if (lowerPath.endsWith(".css")) {
                    response.setContentType("text/css");
                } else if (lowerPath.endsWith(".eot")) {
                    response.setContentType("application/vnd.ms-fontobject");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                        text("subprojects")
                        if (relativeToAnother) {
                            text(" of project ")
                            reference(access.relativeTo)
                        }
                    }
    
                    ALLPROJECTS -> {
                        text("subprojects")
                        if (relativeToAnother) {
                            text(" of project ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top