Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for honoured (0.11 sec)

  1. cmd/erasure-object.go

    	// this is a theoretical assumption such that
    	// for delete's we do not need to honor storage
    	// class for objects that have reduced quorum
    	// due to storage class - this only needs to be honored
    	// for Read() requests alone that we already do.
    	writeQuorum := len(disks)/2 + 1
    
    	g := errgroup.WithNErrs(len(disks))
    	for index := range disks {
    		index := index
    		g.Go(func() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg.run("env", "GOARCH")
    	tg.grepStdout("^arm$", "GOARCH not honored")
    
    	tg.run("env", "GCCGO")
    	tg.grepStdout(".", "GCCGO unexpectedly empty")
    
    	tg.run("env", "CGO_CFLAGS")
    	tg.grepStdout(".", "default CGO_CFLAGS unexpectedly empty")
    
    	tg.setenv("CGO_CFLAGS", "-foobar")
    	tg.run("env", "CGO_CFLAGS")
    	tg.grepStdout("^-foobar$", "CGO_CFLAGS not honored")
    
    	tg.setenv("CC", "gcc -fmust -fgo -ffaster")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    spec:
      hosts:
      - serviceentry.istio.io
      ports:
      - name: http
        number: 80
        protocol: HTTP
        targetPort: 8080
      location: MESH_EXTERNAL
      resolution: STATIC # not honored for now; everything is static
      workloadSelector:
        labels:
          app: uncaptured` // cannot select pods captured in ambient mesh; IPs are unique per network
    			svcs := apps.All
    			for _, svc := range svcs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    |`org.gradle.unsafe.configuration-cache.max-problems`
    |`org.gradle.configuration-cache.max-problems`
    |===
    
    Note that the original `org.gradle.unsafe.configuration-cache...` properties continue to be honored in this release,
    and no warnings will be produced if they are used, but they will be deprecated and removed in a future release.
    
    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top