Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for Trailing (0.53 sec)

  1. CHANGELOG/CHANGELOG-1.28.md

        - [Container Images](#container-images-8)
      - [Changelog since v1.28.2](#changelog-since-v1282)
      - [Changes by Kind](#changes-by-kind-8)
        - [Feature](#feature-7)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-8)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
      - [Dependencies](#dependencies-8)
        - [Added](#added-8)
        - [Changed](#changed-8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

      - [Changes by Kind](#changes-by-kind-2)
        - [Deprecation](#deprecation)
        - [API Change](#api-change-2)
        - [Feature](#feature-1)
        - [Documentation](#documentation)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-2)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
        - [Uncategorized](#uncategorized)
      - [Dependencies](#dependencies-2)
        - [Added](#added-2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (op.getIsTraining()) {
          // Training case.
          auto operand_shape = bn_train_input_type_tensor.getShape();
          // The mean and variance are each 1 dimensional arrays the size of the
          // feature dimension, with the same element type as the operand (x).
          // This shape must be constructed manually because the mean and variance
          // inputs are empty in the training case.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. pkg/features/kube_features.go

    	KubeletTracing featuregate.Feature = "KubeletTracing"
    
    	// owner: @alexanderConstantinescu
    	// kep: http://kep.k8s.io/3836
    	// alpha: v1.28
    	// beta: v1.30
    	//
    	// Implement connection draining for terminating nodes for
    	// `externalTrafficPolicy: Cluster` services.
    	KubeProxyDrainingTerminatingNodes featuregate.Feature = "KubeProxyDrainingTerminatingNodes"
    
    	// owner: @yt2985
    	// kep: http://kep.k8s.io/2799
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    //     Default is "pv-recycler-".
    //  3. pod.Spec.ActiveDeadlineSeconds gives the recycler pod a maximum timeout
    //     before failing.  Recommended.  Default is 60 seconds.
    //
    // See HostPath and NFS for working recycler examples
    func NewPersistentVolumeRecyclerPodTemplate() *v1.Pod {
    	timeout := int64(60)
    	pod := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    			secretKey:        credentials.SecretKey,
    
    			expectedRespStatus: http.StatusBadRequest,
    		},
    
    		// Test case - 8.
    		// Test case with non-existent source file.
    		// Case for the purpose of failing `api.ObjectAPI.GetObjectInfo`.
    		// Expecting the response status code to http.StatusNotFound (404).
    		{
    			bucketName:       bucketName,
    			uploadID:         uploadID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  7. configure.py

          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
          raising an error and quitting.
    
      Returns:
        [String] The value of var_name after querying for input.
    
      Raises:
        UserInputError: if a query has been attempted n_ask_attempts times without
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withInput "Build file 'build.gradle': file 'fis-file.txt'"
                withInput "Build file 'build.gradle': file 'fis-abs.txt'"
            }
        }
    
        @Ignore("wip: Currently failing on CI for unknown reason")
        def "report file is content addressable"() {
            given:
            settingsFile << """
                rootProject.name = 'car'
            """
    
            file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Updates inputs to TPU embedding enqueue ops depending on whether graph is in training mode or in evaluation mode.";
    
      let description = [{
        Updates inputs to TPU embedding enqueue ops depending on whether graph
        is in training mode or in evaluation mode.
      }];
    
      let constructor = "TFTPU::CreateTPUUpdateEmbeddingEnqueueOpInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    		case images.ErrImagePullBackOff.Error():
    			return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is waiting to start: trying and failing to pull image", containerName, podName)
    		default:
    			return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is waiting to start: %v", containerName, podName, reason)
    		}
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top