Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for robust (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/bucket/replication/README.md

    - SSE-C is hardly adopted by most widely used applications, applications prefer server to manage the keys via SSE-KMS or SSE-S3.
    - MinIO recommends applications to use SSE-KMS, SSE-S3 for simpler, safer and robust encryption mechanism for replicated buckets.
    
    ## Explore Further
    
    - [MinIO Bucket Replication Design](https://github.com/minio/minio/blob/master/docs/bucket/replication/DESIGN.md)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/volume/util/subpath/subpath_linux.go

    		// scan /var/lib/kubelet/pods/<uid>/volume-subpaths/<volume>/<container name>/*
    		fullContainerDirPath := filepath.Join(subPathDir, containerDir.Name())
    		// The original traversal method here was ReadDir, which was not so robust to handle some error such as "stale NFS file handle",
    		// so it was replaced with filepath.Walk in a later patch, which can pass through error and handled by the callback WalkFunc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/bugreport/bugreport.go

    // getProxyLogs fetches proxy logs for the given namespace/pod/container and stores the output in global structs.
    // Runs if a goroutine, with errors reported through gErrors.
    // TODO(stewartbutler): output the logs to a more robust/complete structure.
    func getProxyLogs(runner *kubectlcmd.Runner, config *config.BugReportConfig, resources *cluster2.Resources,
    	path, namespace, pod, container string, wg *sync.WaitGroup,
    ) {
    	startTime := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top