Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,262 for qtext (0.08 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

            then:
            executedAndNotSkipped(":first", ":second")
            file("first.txt").text == "Hello from the first task"
            file("second.txt").text == "Hello from the second task"
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "ad hoc tasks with the same action share results"() {
            file("input.txt").text = "data"
            buildFile << """
                def input = file("input.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/table.go

    		out = append(out, p.newText(pos, ""))
    	}
    	return out
    }
    
    func nop(text string) string {
    	return text
    }
    
    func tableUnescape(text string) string {
    	out := make([]byte, 0, len(text))
    	for i := 0; i < len(text); i++ {
    		c := text[i]
    		if c == '\\' && i+1 < len(text) && text[i+1] == '|' {
    			i++
    			c = '|'
    		}
    		out = append(out, c)
    	}
    	return string(out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

            final String text = prefixQuery.getPrefix().text();
    
            if (Constants.DEFAULT_FIELD.equals(field)) {
                context.addFieldLog(field, text + "*");
                context.addHighlightedQuery(text);
                return buildDefaultQueryBuilder(fessConfig, context,
                        (f, b) -> QueryBuilders.matchPhrasePrefixQuery(f, toLowercaseWildcard(text)).boost(b * boost)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/text/template/parse/node.go

    }
    
    // TextNode holds plain text.
    type TextNode struct {
    	NodeType
    	Pos
    	tr   *Tree
    	Text []byte // The text; may span newlines.
    }
    
    func (t *Tree) newText(pos Pos, text string) *TextNode {
    	return &TextNode{tr: t, NodeType: NodeText, Pos: pos, Text: []byte(text)}
    }
    
    func (t *TextNode) String() string {
    	return fmt.Sprintf(textFormat, t.Text)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

                        Thread.sleep(40)
                        outputFile.text = inputFile.text
                    }
                }
    
                waitForUserChanges.dependsOn(consumer)
            """
    
            when:
            inputFile.text = "initial"
            runWithFileSystemWatchingAndMakeChangesWhen("waitForUserChanges", "userInput") {
                inputFile.text = "changed"
                waitForChangesToBePickedUp()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    				if ldr.SymType(r.Sym()) == sym.STEXT {
    					// This should be an mtctr instruction. Turn it into a nop.
    					su := ldr.MakeSymbolUpdater(s)
    					const MASK_OP_MTCTR = 63<<26 | 0x3FF<<11 | 0x1FF<<1
    					rewritetonop(&ctxt.Target, ldr, su, int64(r.Off()), MASK_OP_MTCTR, OP_MTCTR)
    				}
    			case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLTCALL):
    				if ldr.SymType(r.Sym()) == sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Failure;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.FailureHeader;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Header;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Identifier;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Info;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

        /**
         * Retrieves the first output line that contains the passed in text.
         *
         * Fails with an assertion if no output line contains the given text.
         *
         * @param text the text to match
         */
        String getOutputLineThatContains(String text);
    
        /**
         * Retrieves the first output line in the post build output that contains the passed in text.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputReader.java

            }
        };
    
        class TextResponse extends UserInput {
            private final String text;
    
            public TextResponse(String text) {
                this.text = text;
            }
    
            @Override
            public String getText() {
                return text;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_security/test_tutorial005_an_py310.py

        assert response.status_code == 200, response.text
        content = response.json()
        assert "access_token" in content
        assert content["token_type"] == "bearer"
    
    
    @needs_py310
    def test_login_incorrect_password(client: TestClient):
        response = client.post(
            "/token", data={"username": "johndoe", "password": "incorrect"}
        )
        assert response.status_code == 400, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top