Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,977 for haxe (0.09 sec)

  1. src/internal/types/testdata/fixedbugs/issue50427.go

    type T interface{ m[ /* ERROR "must have no type parameters" */ P any]() }
    
    func _(t T) {
    	var _ interface{ m[ /* ERROR "must have no type parameters" */ P any](); n() } = t /* ERROR "does not implement" */
    }
    
    type S struct{}
    
    func (S) m[ /* ERROR "must have no type parameters" */ P any]() {}
    
    func _(s S) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 731 bytes
    - Viewed (0)
  2. src/net/net_windows_test.go

    					have = append(have, addr.IP.String())
    				}
    			case *IPAddr:
    				if addr.IP.To4() != nil {
    					have = append(have, addr.String())
    				}
    				if addr.IP.To16() != nil && addr.IP.To4() == nil {
    					// netsh does not output netmask for ipv6, so ignore ipv6 mask
    					have = append(have, addr.IP.String())
    				}
    			}
    		}
    		slices.Sort(have)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue51233.go

    type FFn[RCT RC[RG], RG any] func() Fn /* ERROR "not enough type arguments for type Fn: have 1, want 2" */ [RCT]
    
    type F[RCT RC[RG], RG any] interface {
    	Fn() Fn /* ERROR "not enough type arguments for type Fn: have 1, want 2" */ [RCT]
    }
    
    type concreteF[RCT RC[RG], RG any] struct {
    	makeFn FFn /* ERROR "not enough type arguments for type FFn: have 1, want 2" */ [RCT]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 818 bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/TearDownStackTest.java

                    "tearDownTwo should have been run before tearDownOne", false, tearDownOne.ran);
              }
            };
    
        final SimpleTearDown tearDownTwo = new SimpleTearDown(callback);
        stack.addTearDown(tearDownTwo);
    
        assertEquals(false, tearDownOne.ran);
        assertEquals(false, tearDownTwo.ran);
    
        stack.runTearDown();
    
        assertEquals("tearDownOne should have run", true, tearDownOne.ran);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. docs/en/docs/benchmarks.md

    * **Uvicorn**:
        * Will have the best performance, as it doesn't have much extra code apart from the server itself.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. RELEASE_BRANCHES.md

        * Simple `meshConfig` changes have been approved in the past. Functionality should not be enabled by default.
    * For large API changes, 2 members of the TOC must approve the PR before release manager approval in the release branch
      of the istio/api repository. This does not have to wait for the weekly TOC meeting.
        * Risk should be assessed in the PR.
            * Have installs and upgrades affected by this feature?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/match.go

    		}
    		// Check for match based on maximized tag.
    		for i := range h.haveTags {
    			have := h.haveTags[i]
    			best.update(have, w, max.ScriptID, max.RegionID, pin)
    			if best.conf == Exact {
    				for have.nextMax != 0 {
    					have = h.haveTags[have.nextMax]
    					best.update(have, w, max.ScriptID, max.RegionID, pin)
    				}
    				return best.have, best.want, best.conf
    			}
    		}
    	}
    	if best.conf <= No {
    		if len(want) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

        /**
         * Returns the set of top-level classifier (classes, interfaces, objects, and type-aliases) names in the file.
         *
         * The result may have false-positive entries but cannot have false-negative entries. It should contain all the names in the package but may have some additional names that are not there.
         *
         * @see KaResolveExtensionFile
         */
        public abstract fun getTopLevelClassifierNames(): Set<Name>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/code.txt

           block.
    More text.
    
          Blocks
        can
    
      have
        blank
          lines.
    -- gofmt --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    
    	One space
    	 is
    	  enough
    	   to
    	    start
    	     a
    	      block.
    
    More text.
    
    	    Blocks
    	  can
    
    	have
    	  blank
    	    lines.
    -- markdown --
    Text.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 944 bytes
    - Viewed (0)
  10. test/typeparam/issue51233.go

    type FFn[RCT RC[RG], RG any] func() Fn[RCT] // ERROR "not enough type arguments for type Fn: have 1, want 2"
    
    type F[RCT RC[RG], RG any] interface {
    	Fn() Fn[RCT] // ERROR "not enough type arguments for type Fn: have 1, want 2"
    }
    
    type concreteF[RCT RC[RG], RG any] struct {
    	makeFn FFn[RCT] // ERROR "not enough type arguments for type FFn: have 1, want 2"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 816 bytes
    - Viewed (0)
Back to top