Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for pruned (0.16 sec)

  1. operator/pkg/helmreconciler/reconciler.go

    		h.reportPrunedObjectKind()
    	}()
    	iop := h.iop
    	if iop.Spec.Revision == "" {
    		err := h.Prune(nil, true)
    		return err
    	}
    	// Delete IOP with revision:
    	// for this case we update the status field to pending if there are still proxies pointing to this revision
    	// and we do not prune shared resources, same effect as `istioctl uninstall --revision foo` command.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// Defaults to 2.
    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// paused indicates that the deployment is paused.
    	// +optional
    	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`
    
    	// DEPRECATED.
    	// rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    <No stacktrace options>::
    No stacktraces are printed to the console in case of a build error (e.g., a compile error). Only in case of internal exceptions will stacktraces be printed. If the `DEBUG` log level is chosen, truncated stacktraces are always printed.
    
    [[sec:debug_security]]
    == Logging Sensitive Information
    
    Running Gradle with the `DEBUG` log level can potentially expose sensitive information to the console and build log.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                        break;
                    default:
                        final Boolean isPruned = fieldPrunedRuleMap.get(entry.getKey());
                        Node value = getXPathAPI().selectSingleNode(document, entry.getValue());
                        if (value != null && isPruned != null && isPruned.booleanValue()) {
                            value = pruneNode(value, getCrawlingConfig(responseData));
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 2.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    types that include Go pointers.
    
    All Go pointers passed to C must point to pinned Go memory. Go pointers
    passed as function arguments to C functions have the memory they point to
    implicitly pinned for the duration of the call. Go memory reachable from
    these function arguments must be pinned as long as the C code has access
    to it. Whether Go memory is pinned is a dynamic property of that memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

    // CHECK: "tf.opA"
    // device = "/GPU:1"
    // CHECK: _parallel_execution_ids = "r0:1"
    
    
    // Tests replicate with control dependency output has each expanded replica
    // control pinned to a sink island.
    // CHECK-LABEL: func @replicate_control
    func.func @replicate_control() {
      tf_executor.graph {
        %1 = tf_executor.island {
          tf_device.replicate {n = 2 : i32} {
            tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/requirements.txt

        --hash=sha256:fbf649bc77510ef2521cf797700b96167bb77838c40780da7ea3edd8b78044d1
        # via gevent
    
    # WARNING: The following packages were not pinned, but pip requires them to be
    # pinned when the requirements file includes hashes and the requirement is not
    # satisfied by a package already installed. Consider using the --allow-unsafe flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  9. pkg/controller/deployment/util/deployment_util.go

    	TimedOutReason = "ProgressDeadlineExceeded"
    	// PausedDeployReason is added in a deployment when it is paused. Lack of progress shouldn't be
    	// estimated once a deployment is paused.
    	PausedDeployReason = "DeploymentPaused"
    	// ResumedDeployReason is added in a deployment when it is resumed. Useful for not failing accidentally
    	// deployments that paused amidst a rollout and are bounded by a deadline.
    	ResumedDeployReason = "DeploymentResumed"
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. src/internal/bisect/bisect.go

    //  3. Enable each change that the pattern says should be enabled.
    //     The [Matcher.ShouldEnable] method answers this question for a given change ID.
    //
    //  4. Print a report identifying each change that the pattern says should be printed.
    //     The [Matcher.ShouldPrint] method answers this question for a given change ID.
    //     The report consists of one more lines on standard error or standard output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top