Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for Off (0.05 sec)

  1. .bazelrc

    build:android_x86_64 --cpu=x86_64
    build:android_x86_64 --fat_apk_cpu=x86_64
    
    # Build everything statically for Android since all static libs are later
    # bundled together into a single .so for deployment.
    build:android --dynamic_mode=off
    
    # Sets the default Apple platform to macOS.
    build:macos --apple_platform_type=macos
    
    # gRPC on MacOS requires this #define
    build:macos --copt=-DGRPC_BAZEL_BUILD
    
    # Avoid hitting command line argument limit
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	internalDebugMux *http.ServeMux
    
    	// httpMux listens on the httpAddr (8080).
    	// If a Gateway is used in front and https is off it is also multiplexing
    	// the rest of the features if their port is empty.
    	// Currently runs readiness and debug (if enabled)
    	httpMux *http.ServeMux
    
    	// httpsMux listens on the httpsAddr(15017), handling webhooks
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. RELEASE.md

                from when they are off due to floating-point round-off errors from
                different computation approaches and orders.
            *   To verify that the optimizations are on, look for a message with
                "*oneDNN custom operations are on*" in the log. If the exact phrase
                is not there, it means they are off.
    
    ## Bug Fixes and Other Changes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    			}
    		}
    	}
    }
    
    func lookupStyle(s string) miniogo.BucketLookupType {
    	var lookup miniogo.BucketLookupType
    	switch s {
    	case "on":
    		lookup = miniogo.BucketLookupPath
    	case "off":
    		lookup = miniogo.BucketLookupDNS
    	default:
    		lookup = miniogo.BucketLookupAuto
    
    	}
    	return lookup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value assumption =
            b.createOrFold<shape::CstrEqOp>(ValueRange{then_shape, else_shape});
        // For a vector cond we also verify that the majormost dim of `then` matches
        // the vector size. To do that split off the first dim of `then`.
        bool needs_broadcast = cond_type.getRank() == 1 && then_type.getRank() != 1;
        Value then_shape_split = then_shape;
        if (needs_broadcast) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	eventedPlegRelistPeriod     = time.Second * 300
    	eventedPlegRelistThreshold  = time.Minute * 10
    	eventedPlegMaxStreamRetries = 5
    
    	// backOffPeriod is the period to back off when pod syncing results in an
    	// error. It is also used as the base period for the exponential backoff
    	// container restarts and image pulls.
    	backOffPeriod = time.Second * 10
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Text logging in Kubernetes components now uses [textlogger](https://pkg.go.dev/k8s.io/klog/v2@v2.120.0/textlogger). The same split streams of info and error log entries with buffering of info entries is now also supported for text output (off by default, alpha feature). Previously, this was only supported for JSON. Performance is better also without split streams. ([#114672](https://github.com/kubernetes/kubernetes/pull/114672), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    		if _, err := registry.Create(testContext, podB, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); err != nil {
    			t.Errorf("Unexpected error: %v", err)
    		}
    
    		// Kick off multiple delete collection calls to test notfound behavior
    		wg := &sync.WaitGroup{}
    		for j := 0; j < 2; j++ {
    			wg.Add(1)
    			go func() {
    				defer wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    const fastJobApiBackoff = 10 * time.Millisecond
    const fastRequeue = 10 * time.Millisecond
    
    // testFinishedAt represents time one second later than unix epoch
    // this will be used in various test cases where we don't want back-off to kick in
    var testFinishedAt = metav1.NewTime((time.Time{}).Add(time.Second))
    
    func newJobWithName(name string, parallelism, completions, backoffLimit int32, completionMode batch.CompletionMode) *batch.Job {
    	j := &batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	containerID, err := kl.validateContainerLogStatus(pod.Name, &podStatus, containerName, logOptions.Previous)
    	if err != nil {
    		return err
    	}
    
    	// Do a zero-byte write to stdout before handing off to the container runtime.
    	// This ensures at least one Write call is made to the writer when copying starts,
    	// even if we then block waiting for log output from the container.
    	if _, err := stdout.Write([]byte{}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top