Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 344 for IsSame (0.17 sec)

  1. pkg/test/framework/components/echo/config.go

    	Cluster cluster.Cluster
    
    	// TLS settings for echo server
    	TLSSettings *common.TLSSettings
    
    	// If enabled, echo will be deployed as a "VM". This means it will run Envoy in the same pod as echo,
    	// disable sidecar injection, etc.
    	// This aims to simulate a VM, but instead of managing the complex test setup of spinning up a VM,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/volume/util/util_test.go

    							},
    						},
    						{
    							SecurityContext: &v1.SecurityContext{},
    						},
    					},
    				},
    			},
    			wantFsUser: nil,
    		},
    		{
    			desc: "all have runAsUser specified but not the same",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					SecurityContext: &v1.PodSecurityContext{},
    					InitContainers: []v1.Container{
    						{
    							SecurityContext: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    // has been instantiated and the passed pod is the exact same one as the original pod.
    func (pi *PodInfo) Update(pod *v1.Pod) error {
    	if pod != nil && pi.Pod != nil && pi.Pod.UID == pod.UID {
    		// PodInfo includes immutable information, and so it is safe to update the pod in place if it is
    		// the exact same pod
    		pi.Pod = pod
    		return nil
    	}
    	var preferredAffinityTerms []v1.WeightedPodAffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    type IngressClassSpec struct {
    	// controller refers to the name of the controller that should handle this
    	// class. This allows for different "flavors" that are controlled by the
    	// same controller. For example, you may have different parameters for the
    	// same implementing controller. This should be specified as a
    	// domain-prefixed path no more than 250 characters in length, e.g.
    	// "acme.io/ingress-controller". This field is immutable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    // does the same thing for `Ts`.
    template <typename T, typename... Ts>
    void DuplicateShapeDeterminingConstants(func::FuncOp func_op) {
      for (auto op : func_op.getOps<typename T::OpType>()) {
        RecursivelyDuplicateConstantsForOperands(
            GetOperands(*op, T::OperandIndices()));
      }
    
      // Do the same thing for the rest of `Ts`.
      if constexpr (sizeof...(Ts) != 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        Example:
          %tensor = tfrt_fallback_async.const_string_tensor {shape = [1, 2], value = ["const", "string"]}
    
        Note: if the entries in `value` are all the same, we can just keep one copy.
          In other words, the following two lines are effectively the same.
          %tensor = tfrt_fallback_async.const_string_tensor {shape = [1, 2], value = ["string", "string"]}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/net/url/url.go

    // setPath will return an error only if the provided path contains an invalid
    // escaping.
    //
    // setPath should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname badSetPath net/url.(*URL).setPath
    func (u *URL) setPath(p string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  8. src/internal/xcoff/file.go

    		switch f.TargetMachine {
    		case U802TOCMAGIC:
    			shdr := new(SectionHeader32)
    			if err := binary.Read(sr, binary.BigEndian, shdr); err != nil {
    				return nil, err
    			}
    			s.Name = cstring(shdr.Sname[:])
    			s.VirtualAddress = uint64(shdr.Svaddr)
    			s.Size = uint64(shdr.Ssize)
    			scnptr = uint64(shdr.Sscnptr)
    			s.Type = shdr.Sflags
    			s.Relptr = uint64(shdr.Srelptr)
    			s.Nreloc = uint32(shdr.Snreloc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    #### `version` value
    
    This value, nested in elements of the `dependencies` or `dependencyConstraints` nodes, defines the version constraint of a dependency or dependency constraint. Has the same meaning as `version` in the Gradle DSL. A version constraint consists of:
    - `requires`: optional. The required version for this dependency.
    - `prefers`: optional. The preferred version for this dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/wasmplugin_test.go

    			// Enable logging for debugging
    			applyTelemetryResource(t, true)
    			badWasmTestHelper(t, "testdata/bad-filter.yaml", false, true)
    		})
    }
    
    // TestBadWasmWithFailOpen is basically the same with TestBadWasmRemoteLoad except
    // it tests with "fail_open = true". To test the fail_open, the target pod is restarted
    // after applying the Wasm filter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top