Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 339 for Words (0.17 sec)

  1. src/cmd/go/internal/base/goflags.go

    			return
    		}
    		Fatalf("go: parsing $GOFLAGS: %v", err)
    	}
    
    	if len(goflags) == 0 {
    		// nothing to do; avoid work on later InitGOFLAGS call
    		goflags = []string{}
    		return
    	}
    
    	// Each of the words returned by strings.Fields must be its own flag.
    	// To set flag arguments use -x=value instead of -x value.
    	// For boolean flags, -x is fine instead of -x=true.
    	for _, f := range goflags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata_test.go

    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func TestTestdata(t *testing.T) {
    	files, _ := filepath.Glob("testdata/*.txt")
    	if len(files) == 0 {
    		t.Fatalf("no testdata")
    	}
    	var p Parser
    	p.Words = map[string]string{
    		"italicword": "",
    		"linkedword": "https://example.com/linkedword",
    	}
    	p.LookupPackage = func(name string) (importPath string, ok bool) {
    		if name == "comment" {
    			return "go/doc/comment", true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeDeduplicationIntegrationTest.groovy

            projectName("foo/app") == "foo-app"
            projectName("bar") == "bar"
            projectName("bar/app") == "bar-app"
        }
    
        @ToBeFixedForConfigurationCache
        def "removes duplicate words from project dedup prefix"() {
            given:
            project("root"){
                project("api"){
                    project("myproject") {
                        project("myproject-foo") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/math/big/float.go

    		sbit = z.mant.sticky(r)
    	}
    	sbit &= 1 // be safe and ensure it's a single bit
    
    	// cut off extra words
    	n := (z.prec + (_W - 1)) / _W // mantissa length in words for desired precision
    	if m > n {
    		copy(z.mant, z.mant[m-n:]) // move n last words to front
    		z.mant = z.mant[:n]
    	}
    
    	// determine number of trailing zero bits (ntz) and compute lsb mask of mantissa's least-significant word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ko.properties

    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    labels.advance_search_not_queries=None of these words
    labels.advance_search_filetype=File Type
    labels.advance_search_filetype_default=All Type
    labels.advance_search_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. src/slices/slices_test.go

    	if want := []int{2, 9, 5, 1, 4, 1, 3}; !Equal(odd, want) {
    		t.Errorf("Reverse(odd) = %v, want %v", odd, want)
    	}
    
    	words := strings.Fields("one two three")
    	Reverse(words)
    	if want := strings.Fields("three two one"); !Equal(words, want) {
    		t.Errorf("Reverse(words) = %v, want %v", words, want)
    	}
    
    	singleton := []string{"one"}
    	Reverse(singleton)
    	if want := []string{"one"}; !Equal(singleton, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/dependencies/sub-dependencies.md

        ```Python hl_lines="1"
        async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)):
            return {"fresh_value": fresh_value}
        ```
    
    ## Recap
    
    Apart from all the fancy words used here, the **Dependency Injection** system is quite simple.
    
    Just functions that look the same as the *path operation functions*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Hasher.java

      @CanIgnoreReturnValue
      @Override
      Hasher putChar(char c);
    
      /**
       * Equivalent to processing each {@code char} value in the {@code CharSequence}, in order. In
       * other words, no character encoding is performed; the low byte and high byte of each {@code
       * char} are hashed directly (in that order). The input must not be updated while this method is
       * in progress.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. src/math/exp.go

    //      We use a special Remez algorithm on [0,0.34658] to generate
    //      a polynomial of degree 5 to approximate R. The maximum error
    //      of this polynomial approximation is bounded by 2**-59. In
    //      other words,
    //          R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
    //      (where z=r*r, and the values of P1 to P5 are listed below)
    //      and
    //          |                  5          |     -59
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    // consumers of Kubernetes compatible REST APIs as defined in docs/devel/api-conventions.md.
    //
    // The Kubernetes API provides versioned resources and object kinds which are scoped
    // to API groups. In other words, kinds and resources should not be assumed to be
    // unique across groups.
    //
    // TODO: split into sub-interfaces
    type RESTMapper interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top