Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 563 for greater (0.28 sec)

  1. src/io/io.go

    var ErrUnexpectedEOF = errors.New("unexpected EOF")
    
    // ErrNoProgress is returned by some clients of a [Reader] when
    // many calls to Read have failed to return any data or error,
    // usually the sign of a broken [Reader] implementation.
    var ErrNoProgress = errors.New("multiple Read calls return no data or error")
    
    // Reader is the interface that wraps the basic Read method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode
    
    	// suspend specifies whether the Job controller should create Pods or not. If
    	// a Job is created with suspend set to true, no Pods are created by the Job
    	// controller. If a Job is suspended after creation (i.e. the flag goes from
    	// false to true), the Job controller will delete all active Pods associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    	return node.IsAmbient() || (features.EnableSidecarHBONEListening && bool(node.Metadata.EnableHBONE))
    }
    
    func (node *Proxy) SetWorkloadEntry(name string, create bool) {
    	node.Lock()
    	defer node.Unlock()
    	node.workloadEntryName = name
    	node.workloadEntryAutoCreated = create
    }
    
    func (node *Proxy) WorkloadEntry() (string, bool) {
    	node.RLock()
    	defer node.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

       * references, which is particularly hard to quantify.
       */
    
      /** Creates an empty {@code CompactHashMap} instance. */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          CompactHashMap<K, V> create() {
        return new CompactHashMap<>();
      }
    
      /**
       * Creates a {@code CompactHashMap} instance, with a high enough "initial capacity" that it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		return err
    	}
    	return nil
    }
    
    // Create implements storage.Interface.Create.
    func (s *store) Create(ctx context.Context, key string, obj, out runtime.Object, ttl uint64) error {
    	preparedKey, err := s.prepareKey(key)
    	if err != nil {
    		return err
    	}
    	ctx, span := tracing.Start(ctx, "Create etcd3",
    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. hack/lib/golang.sh

        kube::log::usage_from_stdin <<EOF
    Detected go version: ${go_version[*]}.
    Kubernetes requires ${minimum_go_version} or greater.
    Please install ${minimum_go_version} or later.
    EOF
        return 2
      fi
    }
    
    # kube::golang::setup_env will check that the `go` commands is available in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation.go

    }
    
    // ValidateDuration checks that a proto duration is well-formed
    func ValidateDuration(pd *durationpb.Duration) error {
    	dur := pd.AsDuration()
    	if dur < time.Millisecond {
    		return errors.New("duration must be greater than 1ms")
    	}
    	if dur%time.Millisecond != 0 {
    		return errors.New("only durations to ms precision are supported")
    	}
    	return nil
    }
    
    // ValidateDurationRange verifies range is in specified duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    			"invalid connect timeout",
    			"config path must be set",
    			"binary path must be set",
    			"oneof service cluster or tracing service name must be specified",
    			"invalid drain duration: duration must be greater than 1ms",
    			"discovery address must be set to the proxy discovery service",
    			"invalid proxy admin port",
    			"invalid status port",
    			"trustDomain: empty domain name not allowed",
    			"trustDomainAliases[0]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		} else if (nodeMask - maskSize) > constants.PodSubnetNodeMaskMaxDiff {
    			allErrs = append(allErrs, field.Invalid(fldPath, podSubnet.String(), fmt.Sprintf("pod subnet mask (%d) and node-mask (%d) difference is greater than %d", maskSize, nodeMask, constants.PodSubnetNodeMaskMaxDiff)))
    		}
    	}
    	return allErrs
    }
    
    // getClusterNodeMask returns the corresponding node-cidr-mask
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        if (tpu_replicated_input.getIsMirroredVariable()) {
          mirrored_variable_indices.push_back(pos_and_input.index());
        }
      }
    
      // Create replicate op.
      auto result_types = GetClusterResultTypes(cluster, partitioned_outputs);
      auto replicate_op = builder.create<mlir::tf_device::ReplicateOp>(
          cluster.getLoc(), num_replicas,
          llvm::SmallDenseMap<llvm::StringRef,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top