Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Detached (0.17 sec)

  1. pkg/kubelet/kubelet_test.go

    		time.Duration(50*time.Millisecond),
    		func() (bool, error) {
    			// Verify volumes detached
    			volumeAttached := volumeManager.VolumeIsAttached(volumeName)
    			return !volumeAttached, nil
    		},
    	)
    
    	if err != nil {
    		return fmt.Errorf(
    			"Expected volumes to be detached. But some volumes are still attached: %#v", attachedVolumes)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    					klog.V(1).Infof("VerifyVolumesAreAttached determined volume %q (spec.Name: %q) is no longer attached to node %q, therefore it was marked as detached.",
    						volumeSpecMap[spec], spec.Name(), nodeName)
    				}
    			}
    		}
    
    		// It is hard to differentiate migrated status for all volumes for verify_volumes_are_attached_per_node
    		return volumetypes.NewOperationContext(nil, nil, false)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	for uid, val := range cgroupPods {
    		// if the pod is in the running set, its not a candidate for cleanup
    		if _, ok := possiblyRunningPods[uid]; ok {
    			continue
    		}
    
    		// If volumes have not been unmounted/detached, do not delete the cgroup
    		// so any memory backed volumes don't have their charges propagated to the
    		// parent croup.  If the volumes still exist, reduce the cpu shares for any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            return WalkResult::advance();
    
          // Best-effort shape inference in attached functions. Do not return
          // failure even if it doesn't get to fixed point, but propagate "real"
          // failure.
          if (failed(PropagateShapeIntoAttachedFunctions(op, max_iterations))) {
            op->emitWarning() << "unable to refine shape of attached function "
                                 "arguments and bodies";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    super(methodVisitor);
                }
    
                protected void attachProperty(AttachedProperty attached) {
                    // ManagedObjectFactory.attachOwner(get<prop>(), this, <property-name>))
                    PropertyMetadata property = attached.property;
                    boolean applyRole = attached.applyRole;
                    MethodMetadata getter = property.getMainGetter();
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @testWhileRegionSimplePassThrough(%arg0 : tensor<*xf32>, %arg1 : tensor<i32>) -> tensor<*xf32> {
      // CHECK: "tf.WhileRegion"(%arg1)
      %0:2 = "tf.WhileRegion"(%arg0, %arg1) (
        {
          // condition, check if count has reached 0
          ^bb0(%carg0: tensor<*xf32>, %carg1: tensor<i32>):
          %zero = arith.constant dense<0> : tensor<i32>
          %ne = "tf.NotEqual"(%carg1, %zero) : (tensor<i32>, tensor<i32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    	}
    
    	ctx := context.Background()
    
    	// test cases with inputs and expected result for GetObject.
    	testCases := []struct {
    		bucketName string
    		objectName string
    		byteRange  string // range of bytes to be fetched from GetObject.
    		accessKey  string
    		secretKey  string
    		// expected output.
    		expectedContent    []byte // expected response body.
    		expectedRespStatus int    // expected response status body.
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

        --zone "${ZONE}" \
        --instances "${REPLICA_NAME}"
    
      if [[ "${GCE_PRIVATE_CLUSTER:-}" == "true" ]]; then
        add-to-internal-loadbalancer "${REPLICA_NAME}" "${ZONE}"
      fi
    }
    
    # Detaches old and ataches new external IP to a VM.
    #
    # Arguments:
    #   $1 - VM name
    #   $2 - VM zone
    #   $3 - external static IP; if empty will use an ephemeral IP address.
    function attach-external-ip() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		{Name: "Node", Type: "string", Description: storagev1.VolumeAttachmentSpec{}.SwaggerDoc()["nodeName"]},
    		{Name: "Attached", Type: "boolean", Description: storagev1.VolumeAttachmentStatus{}.SwaggerDoc()["attached"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //	GOINSECURE
    //		Comma-separated list of glob patterns (in the syntax of Go's path.Match)
    //		of module path prefixes that should always be fetched in an insecure
    //		manner. Only applies to dependencies that are being fetched directly.
    //		GOINSECURE does not disable checksum database validation. GOPRIVATE or
    //		GONOSUMDB may be used to achieve that.
    //	GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top