Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,383 for happen (0.14 sec)

  1. pilot/pkg/util/network/ip.go

    			if !okay {
    				continue
    			}
    			// unwrap the IPv4-mapped IPv6 address
    			unwrapAddr := ipAddr.Unmap()
    			if !unwrapAddr.IsValid() || unwrapAddr.IsLoopback() || unwrapAddr.IsLinkLocalUnicast() || unwrapAddr.IsLinkLocalMulticast() {
    				continue
    			}
    			if unwrapAddr.IsUnspecified() {
    				ok = false
    				continue
    			}
    			ipAddresses = append(ipAddresses, unwrapAddr.String())
    		}
    	}
    	return ipAddresses, ok
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/vet/testdata/nilfunc/nilfunc.go

    // license that can be found in the LICENSE file.
    
    package nilfunc
    
    func F() {}
    
    func Comparison() {
    	if F == nil { // ERROR "comparison of function F == nil is always false"
    		panic("can't happen")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 313 bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/monitor/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		}, []string{"action", "error"})
    
    	reconciliationsDuration = metrics.NewHistogramVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. tests/serializer_test.go

    	DB.Migrator().DropTable(adaptorSerializerModel(&SerializerStruct{}))
    	if err := DB.Migrator().AutoMigrate(adaptorSerializerModel(&SerializerStruct{})); err != nil {
    		t.Fatalf("no error should happen when migrate scanner, valuer struct, got error %v", err)
    	}
    
    	createdAt := time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC)
    	updatedAt := createdAt.Unix()
    
    	data := SerializerStruct{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    		if compilation.Error != nil {
    			// Shouldn't happen because of validation.
    			return nil, fmt.Errorf("compile class filter CEL expression: %w", compilation.Error)
    		}
    		c.filter = &compilation
    	}
    	for _, request := range requests {
    		compilation := cel.Compiler.CompileCELExpression(request.Selector, environment.StoredExpressions)
    		if compilation.Error != nil {
    			// Shouldn't happen because of validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/multiple-templates.yaml

        matchLabels:
          app: hello
      template:
        metadata:
          annotations:
            # There is no real purpose of setting this multiple times; this just makes sure it doesn't blow
            # up if a user does happen to configure this
            inject.istio.io/templates: sidecar,sidecar,sidecar
          labels:
            app: hello
        spec:
          containers:
          - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 22 15:44:09 UTC 2020
    - 568 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/feature_request.md

    A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
    
    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    A clear and concise description of any alternative solutions or features you've considered.
    
    **Additional context**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  8. test/fixedbugs/issue27201.go

    package main
    
    import (
    	"runtime"
    	"strings"
    )
    
    func main() {
    	f(nil)
    }
    
    func f(p *int32) {
    	defer checkstack()
    	v := *p         // panic should happen here, line 20
    	sink = int64(v) // not here, line 21
    }
    
    var sink int64
    
    func checkstack() {
    	_ = recover()
    	var buf [1024]byte
    	n := runtime.Stack(buf[:], false)
    	s := string(buf[:n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 14 22:41:33 UTC 2019
    - 681 bytes
    - Viewed (0)
  9. test/fixedbugs/bug456.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3907: out of fixed registers in nested byte multiply.
    // Used to happen with both 6g and 8g.
    
    package main
    
    func F(a, b, c, d uint8) uint8 {
    	return a * (b * (c * (d *
    		(a * (b * (c * (d *
    			(a * (b * (c * (d *
    				a * (b * (c * d)))))))))))))
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 544 bytes
    - Viewed (0)
  10. releasenotes/notes/drop-iop.yaml

        of what was installed.
        However, it was a common source of confusion (as users would change it and nothing would happen), and did not reliably represent the current state.
        As there is no `IstioOperator` needed for these usages anymore, `istioctl install` and `helm install` no longer install the `IstioOperator` CRD.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
Back to top