Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 568 for pruned (0.18 sec)

  1. cmd/kubelet/app/server.go

    				return fmt.Errorf("failed to validate kubelet flags: %w", err)
    			}
    
    			if cleanFlagSet.Changed("pod-infra-container-image") {
    				klog.InfoS("--pod-infra-container-image will not be pruned by the image garbage collector in kubelet and should also be set in the remote runtime")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm.go

    		if !s.XEmbeddedResource {
    			clone := *s
    			clone.XEmbeddedResource = true
    			s = &clone
    		}
    	}
    	prune(obj, s, &opts)
    	sort.Strings(opts.UnknownFieldPaths)
    	return opts.UnknownFieldPaths
    }
    
    // Prune is equivalent to
    // PruneWithOptions(obj, s, isResourceRoot, structuralschema.UnknownFieldPathOptions{})
    func Prune(obj interface{}, s *structuralschema.Structural, isResourceRoot bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      FixupSourceAndSinkEdges(graph_.get());
    
      // Prune nodes in the graph that are not reachable from the output.
      if (specs_.prune_unused_nodes) {
        std::unordered_set<const Node*> prune_start;
        TF_RETURN_IF_ERROR(GetInputOutputNodes(*node_name_map, &prune_start));
        if (!prune_start.empty()) {
          if (PruneForReverseReachability(graph_.get(), prune_start)) {
            VLOG(1) << "Pruned unused nodes in graphdef";
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    		for i := len(preds) - 1; i >= 0; i-- {
    			pred := preds[i]
    			if blockLocs[pred.ID].lastChangedTime > locs.lastCheckedTime {
    				continue // keep this predecessor
    			}
    			preds[i] = preds[len(preds)-1]
    			preds = preds[:len(preds)-1]
    			if state.loggingLevel > 2 {
    				state.logf("Pruned b%d, lastChanged was %d but b%d lastChecked is %d\n", pred.ID, blockLocs[pred.ID].lastChangedTime, b.ID, locs.lastCheckedTime)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. hack/update-vendor.sh

          exit 1
        fi
    
        # prune unused pinned replace directives
        comm -23 \
          <(go mod edit -json | jq -r '.Replace[] | .Old.Path' | sort) \
          <(go list -m -json all | jq -r .Path | sort) |
        while read -r X; do echo "-dropreplace=${X}"; done |
        xargs -L 100 go mod edit -fmt
    
        # prune replace directives that pin to the naturally selected version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_while_results.cc

        if (op != candidate_op) return false;
      }
    
      // Don't prune if the condition block argument has any user.
      if (!cond_block_argument.use_empty()) return false;
    
      // Don't prune if `body_yield_operand` has more than one use (that would mean
      // it feeds into another op apart from `Yield`).
      if (!body_yield_operand.hasOneUse()) return false;
    
      // Don't prune if any other result of the candidate op is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	klog.V(3).InfoS("Clean up pod workers for terminated pods")
    	workingPods := kl.podWorkers.SyncKnownPods(allPods)
    
    	// Reconcile: At this point the pod workers have been pruned to the set of
    	// desired pods. Pods that must be restarted due to UID reuse, or leftover
    	// pods from previous runs, are not known to the pod worker.
    
    	allPodsByUID := make(map[types.UID]*v1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

    # the graph fetch as a control.
    #
    # PRUNE-LABEL: func @main
    # PRUNE-SAME:  control_outputs = "AssignAdd"
    # PRUNE-SAME:  inputs = ""
    # PRUNE-SAME:  outputs = ""
    # PRUNE-NOT:       "tf.Assign"
    # PRUNE-NOT:       "tf.Identity"
    # PRUNE-DAG:       %[[CONST:.*]], %{{.*}} = tf_executor.island wraps "tf.Const"
    # PRUNE-DAG:       %[[VAR:.*]], %{{.*}} = tf_executor.island wraps "tf.VariableV2"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  9. hack/testdata/prune/svc.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: prune-svc
      labels:
        prune-group: "true"
    spec:
      selector:
        prune-group-nomatch: "true"
      ports:
      - port: 80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 21:02:31 UTC 2016
    - 181 bytes
    - Viewed (0)
  10. test/rune.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test rune constants, expressions and types.
    // Compiles but does not run.
    
    package rune
    
    var (
    	r0 = 'a'
    	r1 = 'a'+1
    	r2 = 1+'a'
    	r3 = 'a'*2
    	r4 = 'a'/2
    	r5 = 'a'<<1
    	r6 = 'b'<<2
    	r7 int32
    
    	r = []rune{r0, r1, r2, r3, r4, r5, r6, r7}
    )
    
    var (
    	f0 = 1.2
    	f1 = 1.2/'a'
    
    	f = []float64{f0, f1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 603 bytes
    - Viewed (0)
Back to top