Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 347 for GETs (0.43 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

    }
    
    
    /**
     * Provides a property delegate that gets elements of the given [type] and applies the given [configuration].
     */
    fun <T : Any, U : T> NamedDomainObjectContainer<T>.getting(type: KClass<U>, configuration: U.() -> Unit) =
        PolymorphicDomainObjectContainerGettingDelegateProvider.of(this, type, configuration)
    
    
    /**
     * Provides a property delegate that gets elements of the given [type].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    //
    // GarbageCollect consists of the following steps:
    // * gets evictable containers which are not active and created more than gcPolicy.MinAge ago.
    // * removes oldest dead containers for each pod by enforcing gcPolicy.MaxPerPodContainer.
    // * removes oldest dead containers by enforcing gcPolicy.MaxContainers.
    // * gets evictable sandboxes which are not ready and contains no containers.
    // * removes evictable sandboxes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isUByte: Boolean get() = withValidityAssertion { isClassTypeWithClassId(StandardNames.FqNames.uByte) }
    
        /** Gets the class symbol backing the given type, if available. */
        public val KaType.expandedSymbol: KaClassOrObjectSymbol?
            get() = withValidityAssertion {
                return when (this) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// +optional
    	AllocationMode AllocationMode `json:"allocationMode,omitempty" protobuf:"bytes,3,opt,name=allocationMode"`
    }
    
    // AllocationMode describes whether a ResourceClaim gets allocated immediately
    // when it gets created (AllocationModeImmediate) or whether allocation is
    // delayed until it is needed for a Pod
    // (AllocationModeWaitForFirstConsumer). Other modes might get added in the
    // future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/wait.go

    			for _, pod := range pods.Items {
    				if pod.Status.Phase != v1.PodRunning {
    					return false, nil
    				}
    			}
    
    			return true, nil
    		})
    }
    
    // WaitForPodToDisappear blocks until it timeouts or gets a "NotFound" response from the API Server when getting the Static Pod in question
    func (w *KubeWaiter) WaitForPodToDisappear(podName string) error {
    	return wait.PollUntilContextTimeout(context.Background(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. internal/kms/kms.go

    // and options for creating keys.
    type CreateKeyRequest struct {
    	// Name is the name of the key that gets created.
    	Name string
    }
    
    // DeleteKeyRequest is a structure containing fields
    // and options for deleting keys.
    type DeleteKeyRequest struct {
    	// Name is the name of the key that gets deleted.
    	Name string
    }
    
    // GenerateKeyRequest is a structure containing fields
    // and options for generating data keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    				expectErr: true,
    			},
    			{
    				name: "Valid config gets loaded",
    				in:   validUnmarshallableClusterConfig.yaml,
    				out: &clusterConfig{
    					configBase: configBase{
    						GroupVersion: clusterConfigHandler.GroupVersion,
    						userSupplied: true,
    					},
    					config: validUnmarshallableClusterConfig.obj,
    				},
    			},
    			{
    				name: "Valid config gets loaded even if coupled with an extra document",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

        switch (inference_type) {
          case tensorflow::DT_QUINT8:
          case tensorflow::DT_QUINT16:
            return false;
          default:
            return true;
        }
      }
    
      // Gets the width of this quantization type. Returns 0 if it isn't a
      // quantization type.
      int64_t GetQuantizationTypeWidth() const {
        switch (inference_type) {
          case tensorflow::DT_INT8:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    };
    
    // Returns true iff func_op has either no Region or the body has no Blocks.
    bool IsFuncOpEmpty(func::FuncOp func_op) {
      return func_op->getNumRegions() == 0 || func_op.getBody().empty();
    }
    
    // Gets the GraphOp from the function op. Returns an empty op iff it doesn't
    // exist.
    GraphOp GetGraphOpFromFuncOp(func::FuncOp func_op) {
      if (IsFuncOpEmpty(func_op)) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/apis/resource/types.go

    	// resource. "WaitForFirstConsumer" is the default.
    	// +optional
    	AllocationMode AllocationMode
    }
    
    // AllocationMode describes whether a ResourceClaim gets allocated immediately
    // when it gets created (AllocationModeImmediate) or whether allocation is
    // delayed until it is needed for a Pod
    // (AllocationModeWaitForFirstConsumer). Other modes might get added in the
    // future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top