Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for dialing (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    This prevents temporary problems, such as connection drops, read or write timeouts, and low level network failures such as a connection resets, causing cache operations to fail and disabling the remote cache for the remainder of the build.
    
    Requests will be retried up to 3 times.
    If the problem persists, the cache operation will fail and the remote cache will be disabled for the remainder of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// served is a flag enabling/disabling this version from being served via REST APIs
    	Served bool `json:"served" protobuf:"varint,2,opt,name=served"`
    	// storage indicates this version should be used when persisting custom resources to storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    import (
    	"bufio"
    	"cmd/internal/dwarf"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"cmd/internal/sys"
    	"encoding/binary"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    			if err != nil {
    				return -1, errObjectTampered
    			}
    			return size, nil
    		}
    		return o.DecryptedSize()
    	}
    
    	return o.Size, nil
    }
    
    // Disabling compression for encrypted enabled requests.
    // Using compression and encryption together enables room for side channel attacks.
    // Eliminate non-compressible objects by extensions/content-types.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pilot/pkg/autoregistration/controller_test.go

    	return &core.Node{
    		Locality: &core.Locality{
    			Region:  r,
    			Zone:    z,
    			SubZone: sz,
    		},
    	}
    }
    
    // createOrFail wraps config creation with convenience for failing tests
    func createOrFail(t test.Failer, store model.ConfigStoreController, cfg config.Config) {
    	if _, err := store.Create(cfg); err != nil {
    		t.Fatalf("failed creating %s/%s: %v", cfg.Namespace, cfg.Name, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    //go:nowritebarrier
    func stackmapdata(stkmap *stackmap, n int32) bitvector {
    	// Check this invariant only when stackDebug is on at all.
    	// The invariant is already checked by many of stackmapdata's callers,
    	// and disabling it by default allows stackmapdata to be inlined.
    	if stackDebug > 0 && (n < 0 || n >= stkmap.n) {
    		throw("stackmapdata: index out of range")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    There are two main use cases:
    
    - Using the status of build features in reports or statistics.
    - Incrementally adopting experimental Gradle features by disabling incompatible plugin functionality.
    
    Below is an example of a plugin that utilizes both of the cases.
    
    .Reacting to build features
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--configuration-cache-problems=(fail,warn)`::
    Configures how the configuration cache handles problems. Default is `fail`.
    +
    Set to `warn` to report problems without failing the build.
    +
    Set to `fail` to report problems and fail the build if there are any problems.
    
    `--configure-on-demand`, `--no-configure-on-demand`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    			V3Config: s.openAPIV3Config,
    		}.InstallV3(s.Handler.GoRestfulContainer, s.Handler.NonGoRestfulMux)
    	}
    
    	s.installHealthz()
    	s.installLivez()
    
    	// as soon as shutdown is initiated, readiness should start failing
    	readinessStopCh := s.lifecycleSignals.ShutdownInitiated.Signaled()
    	err := s.addReadyzShutdownCheck(readinessStopCh)
    	if err != nil {
    		klog.Errorf("Failed to install readyz shutdown check %s", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"cmd/internal/sys"
    	"internal/abi"
    	"internal/buildcfg"
    	"log"
    	"math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top