Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 266 for qtext (0.2 sec)

  1. 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)
  2. 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)
  3. pkg/registry/batch/job/storage/storage_test.go

    	test.TestDelete(validNewJob())
    }
    
    type dummyRecorder struct {
    	agent string
    	text  string
    }
    
    func (r *dummyRecorder) AddWarning(agent, text string) {
    	r.agent = agent
    	r.text = text
    	return
    }
    
    func (r *dummyRecorder) getWarning() string {
    	return r.text
    }
    
    var _ warning.Recorder = &dummyRecorder{}
    
    func TestJobDeletion(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/go.sum

    golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
    golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
    golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
    golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk=
    golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Token header invalid"}
    
    
    @needs_py39
    def test_put(client: TestClient):
        response = client.put(
            "/items/plumbus?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

                        def output = outputs.file(input.name + ".green")
                        if (input.file) {
                            output.text = input.text + ".green"
                        } else {
                            output.text = "missing.green"
                        }
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_bigger_applications/test_main_an.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Token header invalid"}
    
    
    def test_put(client: TestClient):
        response = client.put(
            "/items/plumbus?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 200, response.text
        assert response.json() == {"item_id": "plumbus", "name": "The great Plumbus"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

        }
    
        protected void replaceVariablesInFile(Map binding, File file) {
            String text = file.text
            binding.each { String var, String value ->
                text = text.replaceAll("\\\$${var}".toString(), value)
            }
            file.text = text
        }
    
        protected void setupLocalBuildCache() {
            settingsFile << """
                buildCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tests/test_security_oauth2.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.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                    return clearLastUpdatedElementOf(repositoryFile.text)
                }
                // Ignore contents of maven-metadata.xml.sha256, etc, because hashes will most likely
                // change between runs due to <lastUpdated /> differences.
                return ''
            }
            return repositoryFile.text
        }
    
        private String clearLastUpdatedElementOf(String metadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top