Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Shardz (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    --
    
    This is the basic configuration you need to use the plugin:
    
    .Applying the Kotlin DSL Plugin to a `buildSrc` project
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
      // by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
      // the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
      // remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react
      // by sending a graceful termination signal to the containers in the pod. After that 30 seconds,
      // the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,
      // remove the pod from the API. In the presence of network partitions, this object may still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    			// as a proxy for "function actually deferred something". It seems
    			// to be a minor drawback. (We used to actually look through the
    			// gp._defer for a defer corresponding to this function, but that
    			// is hard to do with defer records on the stack during a stack copy.)
    			// Note: the +1 is to offset the -1 that
    			// stack.go:getStackMap does to back up a return
    			// address make sure the pc is in the CALL instruction.
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a bug where hard evictions due to resource pressure would let the pod have the full termination grace period, instead of shutting down instantly. This bug also affected force deleted pods. Both cases now get a termination grace period of 1 second. ([#124063](https...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

    // RUN: tf-tfrt-opt -split-input-file -tf-mlrt-while-to-map-fn %s | FileCheck %s
    
    // Test a while to map_fn conversion in which the max iteration is hard coded inside the predicate body.
    
    // CHECK-LABEL: map/while_cond
    func.func private @"map/while_cond"(%arg0: tensor<i32>, %arg1: tensor<i32>, %arg2: tensor<!tf_type.variant<tensor<*xf32>>>, %arg3: tensor<?xf32>) -> tensor<i1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  7. src/runtime/map.go

    		}
    		i = 0
    	}
    	for ; i < abi.MapBucketCount; i++ {
    		offi := (i + it.offset) & (abi.MapBucketCount - 1)
    		if isEmpty(b.tophash[offi]) || b.tophash[offi] == evacuatedEmpty {
    			// TODO: emptyRest is hard to use here, as we start iterating
    			// in the middle of a bucket. It's feasible, just tricky.
    			continue
    		}
    		k := add(unsafe.Pointer(b), dataOffset+uintptr(offi)*uintptr(t.KeySize))
    		if t.IndirectKey() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				sumErrs[i] = err
    			}
    		})
    	}
    
    	<-r.work.Idle()
    
    	// Report deprecations, then retractions, then errors fetching sums.
    	// Only errors fetching sums are hard errors.
    	for _, mm := range deprecations {
    		if mm.message != "" {
    			fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", mm.m.Path, mm.message)
    		}
    	}
    	var retractPath string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    			// Can't have empty filenames, and having a unique
    			// filename is quite useful for debugging.
    			name = fmt.Sprintf("<missing>_%d", i)
    		}
    		// Note the use of "path" here and not "filepath". The compiler
    		// hard-codes to use "/" in DWARF paths (even for Windows), so we
    		// want to maintain that here.
    		file := path.Base(name)
    		dir := path.Dir(name)
    		dirIdx, ok := dirNums[dir]
    		if !ok && dir != "." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    		base.Fatal(err)
    	}
    
    	// Disable any prompting for passwords by Git.
    	// Only has an effect for 2.3.0 or later, but avoiding
    	// the prompt in earlier versions is just too hard.
    	// If user has explicitly set GIT_TERMINAL_PROMPT=1, keep
    	// prompting.
    	// See golang.org/issue/9341 and golang.org/issue/12706.
    	if os.Getenv("GIT_TERMINAL_PROMPT") == "" {
    		os.Setenv("GIT_TERMINAL_PROMPT", "0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top