Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,053 for haxe (0.06 sec)

  1. samples/open-telemetry/tracing/README.md

    If you have not deployed the `Jaeger` service, you can follow [this](https://istio.io/latest/docs/ops/integrations/jaeger/) installation to install the service.
    
    You may also choose any existing tracing system if you have, and you should change the exporter settings in the configmap mentioned above.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. test/typeparam/issue51232.go

    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 func() Fn[RCT] // ERROR "not enough type arguments for type Fn: have 1, want 2"
    }
    
    func (c *concreteF[RCT, RG]) Fn() Fn[RCT] { // ERROR "not enough type arguments for type Fn: have 1, want 2"
    	return c.makeFn()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 898 bytes
    - Viewed (0)
  3. docs/de/docs/history-design-future.md

    Es war beispielsweise klar, dass es idealerweise auf Standard-Python-Typhinweisen basieren sollte.
    
    Der beste Ansatz bestand außerdem darin, bereits bestehende Standards zu nutzen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:48 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/runtime/runtime_linux_test.go

    	// the same size as what the kernel defines.
    	if have, want := unsafe.Sizeof(Siginfo{}), uintptr(SiginfoMaxSize); have != want {
    		t.Errorf("Go's siginfo struct is %d bytes long; kernel expects %d", have, want)
    	}
    	if have, want := unsafe.Sizeof(Sigevent{}), uintptr(SigeventMaxSize); have != want {
    		t.Errorf("Go's sigevent struct is %d bytes long; kernel expects %d", have, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:20:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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