Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 180 for newpod (0.33 sec)

  1. cluster/addons/kube-network-policies/kube-network-policies.yaml

          containers:
          - name: kube-network-policies
            image: registry.k8s.io/networking/kube-network-policies:v0.2.0
            command:
            - /bin/sh
            - -c
            - /bin/netpol -v 4 1>>/var/log/kube-network-policies.log 2>&1
            resources:
              requests:
                cpu: "100m"
                memory: "50Mi"
            securityContext:
              privileged: true
            volumeMounts:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/unwrap_xla_call_module_op.cc

            call_result.replaceAllUsesWith(new_result);
          }
          continue;
        }
    
        Operation& new_op = *builder.clone(op, arg_mapper);
        for (auto [result, new_result] :
             llvm::zip_equal(op.getResults(), new_op.getResults())) {
          new_op_mapper.map(result, new_result);
        }
      }
    
      call_op.erase();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. api/discovery/apis__networking.k8s.io__v1.json

            "get",
            "patch",
            "update"
          ]
        },
        {
          "kind": "NetworkPolicy",
          "name": "networkpolicies",
          "namespaced": true,
          "shortNames": [
            "netpol"
          ],
          "singularName": "networkpolicy",
          "storageVersionHash": "YpfwF18m1G8=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    //     correctness and security.
    //
    // Note: this is only used by endpointslice controller
    func getPod(c *Controller, ip string, ep *metav1.ObjectMeta, targetRef *corev1.ObjectReference, host host.Name) (*corev1.Pod, bool) {
    	var expectPod bool
    	pod := c.getPod(ip, ep.Namespace, targetRef)
    	if targetRef != nil && targetRef.Kind == "Pod" {
    		expectPod = true
    		if pod == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/passes/decompose.cc

                  op->getLoc(), cast<TypedAttr>(attribute));
            }
            new_operands.push_back(attr_cst);
          }
        }
    
        // Create the TFR call op
        auto new_op = builder.create<CallOp>(
            op->getLoc(), compose_func_type.getResults(),
            SymbolRefAttr::get(builder.getContext(), compose_func.getName()),
            new_operands);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/sync/cond.go

    type Cond struct {
    	noCopy noCopy
    
    	// L is held while observing or changing the condition
    	L Locker
    
    	notify  notifyList
    	checker copyChecker
    }
    
    // NewCond returns a new Cond with Locker l.
    func NewCond(l Locker) *Cond {
    	return &Cond{L: l}
    }
    
    // Wait atomically unlocks c.L and suspends execution
    // of the calling goroutine. After later resuming execution,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config.go

    	}
    
    	// updatePodFunc is the local function which updates the pod cache *oldPods* with new pods *newPods*.
    	// After updated, new pod will be stored in the pod cache *pods*.
    	// Notice that *pods* and *oldPods* could be the same cache.
    	updatePodsFunc := func(newPods []*v1.Pod, oldPods, pods map[types.UID]*v1.Pod) {
    		filtered := filterInvalidPods(newPods, source, s.recorder)
    		for _, ref := range filtered {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/internal/cov/readcovdata.go

    //					VisitFunc(PF)
    //				}
    //			}
    //			EndPackage(PK)
    //		}
    //		EndPod(p)
    //	}
    //	Finish()
    
    type CovDataVisitor interface {
    	// Invoked at the start and end of a given pod (a pod here is a
    	// specific coverage meta-data files with the counter data files
    	// that correspond to it).
    	BeginPod(p pods.Pod)
    	EndPod(p pods.Pod)
    
    	// Invoked when the reader is starting to examine the meta-data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    		key := "pods/" + obj.Namespace + "/" + obj.Name
    		out := &example.Pod{}
    		err := etcdStorage.Create(context.TODO(), key, obj, out, 0)
    		require.NoError(t, err)
    		return out
    	}
    	getPod := func(name, ns string) *example.Pod {
    		key := "pods/" + ns + "/" + name
    		out := &example.Pod{}
    		err := etcdStorage.Get(context.TODO(), key, storage.GetOptions{}, out)
    		require.NoError(t, err)
    		return out
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

            GetInvertPermutedTensorType(pad_type, transpose_perm);
        Value new_pad = rewriter.create<stablehlo::PadOp>(
            pad_op.getLoc(), new_pad_type, transpose_input,
            pad_op.getPaddingValue(), new_padding_low, new_padding_high,
            new_padding_interrier);
    
        Value orig_pad = CreateTranspose(rewriter, new_pad, transpose_perm);
        rewriter.replaceOp(pad_op, orig_pad);
        return success();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top