Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for robust (0.53 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		ServiceAccounts: slices.Sort(serviceAccounts),
    	}
    }
    
    func getGatewayAddrs(gw *v1beta1.Gateway) []netip.Addr {
    	// Currently, we only look at one address. Probably this should be made more robust
    	ip, err := netip.ParseAddr(gw.Status.Addresses[0].Value)
    	if err == nil {
    		return []netip.Addr{ip}
    	}
    	log.Errorf("Unable to parse IP address in status of %v/%v/%v", gvk.KubernetesGateway, gw.Namespace, gw.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    					t.Fatalf("expected endpoints %d but got %d", len(cluster.LoadAssignment.Endpoints), len(tt.expected))
    				}
    				for i := range cluster.LoadAssignment.Endpoints {
    					// TODO Below assertions are not robust to ordering changes in cluster.LoadAssignment.Endpoints[i]
    					if cluster.LoadAssignment.Endpoints[i].LoadBalancingWeight.GetValue() != tt.expected[i].LoadBalancingWeight.GetValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	}
    
    	return perPodEnable || (!perPodDisable && c.Namespace != nil && c.Namespace.IsInjected())
    }
    
    func (c Config) IsUncaptured() bool {
    	// TODO this can be more robust to not require labeling initial echo config (check namespace + isWaypoint + not sidecar)
    	return len(c.Subsets) > 0 && c.Subsets[0].Labels != nil && c.Subsets[0].Labels[constants.DataplaneModeLabel] == constants.DataplaneModeNone
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. test/codegen/comparisons.go

    // 'comparing to zero' expressions
    
    // var + const
    // 'x-const' might be canonicalized to 'x+(-const)', so we check both
    // CMN and CMP for subtraction expressions to make the pattern robust.
    func CmpToZero_ex1(a int64, e int32) int {
    	// arm64:`CMN`,-`ADD`,`(BMI|BPL)`
    	if a+3 < 0 {
    		return 1
    	}
    
    	// arm64:`CMN`,-`ADD`,`BEQ`,`(BMI|BPL)`
    	if a+5 <= 0 {
    		return 1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    facts from one package to another, possibly across address spaces.
    Consequently, Facts must be serializable. The API requires that drivers
    use the gob encoding, an efficient, robust, self-describing binary
    protocol. A fact type may implement the GobEncoder/GobDecoder interfaces
    if the default encoding is unsuitable. Facts should be stateless.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. docs/de/docs/index.md

    * **Kurz**: Minimieren Sie die Verdoppelung von Code. Mehrere Funktionen aus jeder Parameterdeklaration. Weniger Bugs.
    * **Robust**: Erhalten Sie produktionsreifen Code. Mit automatischer, interaktiver Dokumentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/runtime/metrics.go

    	initMetrics()
    
    	// Read the metrics.
    	readMetricsLocked(samplesp, len, cap)
    	metricsUnlock()
    }
    
    // readMetricsLocked is the internal, locked portion of readMetrics.
    //
    // Broken out for more robust testing. metricsLock must be held and
    // initMetrics must have been called already.
    func readMetricsLocked(samplesp unsafe.Pointer, len int, cap int) {
    	// Construct a slice from the args.
    	sl := slice{samplesp, len, cap}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. docs/en/docs/index.md

    * **Easy**: Designed to be easy to use and learn. Less time reading docs.
    * **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs.
    * **Robust**: Get production-ready code. With automatic interactive documentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/gcimporter_test.go

    			if !bytes.HasPrefix(src, []byte("// run")) && !bytes.HasPrefix(src, []byte("// compile")) {
    				// We're bypassing the logic of run.go here, so be conservative about
    				// the files we consider in an attempt to make this test more robust to
    				// changes in test/typeparams.
    				t.Skipf("not detected as a run test")
    			}
    
    			// Compile and import, and compare the resulting package with the package
    			// that was type-checked directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. README.md

    * **Easy**: Designed to be easy to use and learn. Less time reading docs.
    * **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs.
    * **Robust**: Get production-ready code. With automatic interactive documentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top