Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for Nodes (0.07 sec)

  1. src/sync/mutex.go

    type Locker interface {
    	Lock()
    	Unlock()
    }
    
    const (
    	mutexLocked = 1 << iota // mutex is locked
    	mutexWoken
    	mutexStarving
    	mutexWaiterShift = iota
    
    	// Mutex fairness.
    	//
    	// Mutex can be in 2 modes of operations: normal and starvation.
    	// In normal mode waiters are queued in FIFO order, but a woken up waiter
    	// does not own the mutex and competes with new arriving goroutines over
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		podInfoOnMount = *obj.Spec.PodInfoOnMount
    	}
    	allModes := []string{}
    	for _, mode := range obj.Spec.VolumeLifecycleModes {
    		allModes = append(allModes, string(mode))
    	}
    	modes := strings.Join(allModes, ",")
    	if len(modes) == 0 {
    		modes = "<none>"
    	}
    
    	row.Cells = append(row.Cells, obj.Name, attachRequired, podInfoOnMount)
    	storageCapacity := false
    	if obj.Spec.StorageCapacity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        public void setListeners(Set<String> listeners) {
            this.listeners = listeners;
        }
    
        /**
         * The parallel mode to use for running the tests - one of the following modes: methods, tests, classes or instances.
         *
         * Not required.
         *
         * If not present, parallel mode will not be selected
         */
        @Nullable
        @Internal
        public String getParallel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. cmd/s3-zip-handlers.go

    			oi.UserDefined[archiveTypeMetadataKey] = at
    			oi.UserDefined[archiveInfoMetadataKey] = zipInfoStr
    			return dsc, nil
    		},
    	}
    
    	// For all other modes use in-place update to update metadata on a specific version.
    	if _, err = objectAPI.PutObjectMetadata(ctx, bucket, object, popts); err != nil {
    		return nil, err
    	}
    
    	return zipInfo, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    usage, the input tensor comes directly from the user computation only when
    graph_debug_mode is FULL_TENSOR (see protobuf/debug_event.proto for a
    list of all the possible values of graph_debug_mode). For the other debug modes,
    the input tensor should be produced by an additional op or subgraph that
    computes summary information about one or more tensors.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. cmd/erasure-multipart.go

    	if parityDrives < 0 {
    		parityDrives = er.defaultParityCount
    	}
    
    	if globalStorageClass.AvailabilityOptimized() {
    		// If we have offline disks upgrade the number of erasure codes for this object.
    		parityOrig := parityDrives
    
    		var offlineDrives int
    		for _, disk := range onlineDisks {
    			if disk == nil || !disk.IsOnline() {
    				parityDrives++
    				offlineDrives++
    				continue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    	"net"
    	"net/http"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/coreos/go-systemd/v22/daemon"
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	jsonpatch "gopkg.in/evanphx/json-patch.v4"
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"context"
    	"fmt"
    	"path/filepath"
    	"reflect"
    	"sort"
    	"testing"
    	"time"
    
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public List<String> getLockedDependenciesToUpdate() {
            return lockedDependenciesToUpdate;
        }
    
        /**
         * Sets the dependency verification mode. There are three different modes:
         * <ul>
         *     <li><i>strict</i>, the default, verification is enabled as soon as a dependency verification file is present.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/net/http/server.go

    func checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    	// For now we only enforce that it's three digits.
    	// In the future we might block things over 599 (600 and above aren't defined
    	// at https://httpwg.org/specs/rfc7231.html#status.codes).
    	// But for now any three digits.
    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top