Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,900 for holds (0.06 sec)

  1. cmd/kube-controller-manager/app/options/statefulsetcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    
    	statefulsetconfig "k8s.io/kubernetes/pkg/controller/statefulset/config"
    )
    
    // StatefulSetControllerOptions holds the StatefulSetController options.
    type StatefulSetControllerOptions struct {
    	*statefulsetconfig.StatefulSetControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/os/exec.go

    	//
    	// In modeHandle, the lower bits also contain a reference count for the
    	// handle field.
    	//
    	// The Process itself initially holds 1 persistent reference. Any
    	// operation that uses the handle with a system call temporarily holds
    	// an additional transient reference. This prevents the handle from
    	// being closed prematurely, which could result in the OS allocating a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_reorder_replicate_and_partitioned_inputs.cc

                    "have identical XLA sharding";
        }
      }
    
      // 2D Matrix to store per core per replica operands. The matrix dimensions are
      // num_cores_per_replica x num_replicas. i-th row holds the operands for i-th
      // core. j-th column holds the operands for j-th replica.
      llvm::SmallVector<llvm::SmallVector<Value, 4>, 4>
          operands_per_replica_per_core(num_cores_per_replica);
    
      // Collect all operands in the 2D matrix.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 24 23:08:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/podgccontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	podgcconfig "k8s.io/kubernetes/pkg/controller/podgc/config"
    )
    
    // PodGCControllerOptions holds the PodGCController options.
    type PodGCControllerOptions struct {
    	*podgcconfig.PodGCControllerConfiguration
    }
    
    // AddFlags adds flags related to PodGCController for controller manager to the specified FlagSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/admission/config.go

    	externalinformers "k8s.io/client-go/informers"
    	"k8s.io/client-go/rest"
    	"k8s.io/kubernetes/pkg/kubeapiserver/admission/exclusion"
    	quotainstall "k8s.io/kubernetes/pkg/quota/v1/install"
    )
    
    // Config holds the configuration needed to for initialize the admission plugins
    type Config struct {
    	LoopbackClientConfig *rest.Config
    	ExternalInformers    externalinformers.SharedInformerFactory
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pkg/kube/apimirror/probe.go

    	Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
    }
    
    // Type represents the stored type of IntOrString.
    type Type int64
    
    const (
    	Int    Type = iota // The IntOrString holds an int.
    	String             // The IntOrString holds a string.
    )
    
    type IntOrString struct {
    	Type   Type
    	IntVal int32
    	StrVal string
    }
    
    // UnmarshalJSON implements the json.Unmarshaller interface.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    other priority levels. The limit is known as this level's BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_ppc64x.s

    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat0
    
    	// Bytes 16 - 31
    	LXVD2X	(R8)(R11),V2
    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat1		// Match found at R8+16 bytes, jump out
    
    	BEQ	notfound		// Is length <= 32? (CR0 holds this comparison on entry to cmp32)
    	CMP	R4,$48
    
    	ADD	R4,R8,R9		// Compute &s[len(s)-16]
    	ADD	$32,R8,R8
    	ADD	$-16,R9,R9
    	ISEL	CR0GT,R8,R9,R8		// R8 = len(s) <= 48 ? R9 : R8
    
    	// Bytes 33 - 47
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingEvent.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    import org.apache.maven.model.Model;
    
    /**
     * Holds data relevant for a model building event.
     *
     */
    class DefaultModelBuildingEvent implements ModelBuildingEvent {
    
        private Model model;
    
        private final ModelBuildingRequest request;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuilder.java

     *
     * @since 3.3.0
     */
    public interface ToolchainsBuilder {
    
        /**
         * Builds the effective toolchains of the specified toolchains files.
         *
         * @param request The toolchains building request that holds the parameters, must not be {@code null}.
         * @return The result of the toolchains building, never {@code null}.
         * @throws ToolchainsBuildingException If the effective toolchains could not be built.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top