Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for preStop (0.31 sec)

  1. pkg/api/pod/util_test.go

    		}
    	}
    
    	makeContainer := func(preStop, postStart *api.LifecycleHandler) api.Container {
    		container := api.Container{Name: "foo"}
    		if preStop != nil || postStart != nil {
    			container.Lifecycle = &api.Lifecycle{
    				PostStart: postStart,
    				PreStop:   preStop,
    			}
    		}
    		return container
    	}
    
    	makeEphemeralContainer := func(preStop, postStart *api.LifecycleHandler) api.EphemeralContainer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
                      - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "preStop": {
              "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.PostStart != nil {
    		in, out := &in.PostStart, &out.PostStart
    		*out = new(LifecycleHandler)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PreStop != nil {
    		in, out := &in.PreStop, &out.PreStop
    		*out = new(LifecycleHandler)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Lifecycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.PostStart != nil {
    		in, out := &in.PostStart, &out.PostStart
    		*out = new(LifecycleHandler)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PreStop != nil {
    		in, out := &in.PreStop, &out.PreStop
    		*out = new(LifecycleHandler)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Lifecycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    lifecycle: {{ toYaml .Values.global.proxy.lifecycle | indent 6 }} {{- else if $holdProxy }} lifecycle: postStart: exec: command: - pilot-agent - wait {{- else if $nativeSidecar }} {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}} lifecycle: preStop: exec: command: - pilot-agent - request - --debug-port={{(annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort)}} - POST - drain {{- end }} env: {{-...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      return success();
    }
    
    //===----------------------------------------------------------------------===//
    // PReluOp
    //===----------------------------------------------------------------------===//
    
    mlir::LogicalResult PReluOp::verify() {
      PReluOp op = *this;
      auto input_type = op.getInput().getType().cast<ShapedType>();
      auto alpha_type = op.getAlpha().getType().cast<ShapedType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    			ps.startScope('(')
    			ps.writeString("...")
    			printOp()
    			foldParenthesize(f.Arg1)
    			ps.endScope(')')
    		} else {
    			ps.startScope('(')
    			foldParenthesize(f.Arg1)
    			printOp()
    			ps.writeString("...")
    			ps.endScope(')')
    		}
    	} else {
    		ps.startScope('(')
    		foldParenthesize(f.Arg1)
    		printOp()
    		ps.writeString("...")
    		printOp()
    		foldParenthesize(f.Arg2)
    		ps.endScope(')')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          auto island_op = llvm::cast<mlir::tf_executor::IslandOp>(inst);
          mlir::Operation* inner_op = &island_op.GetBody().front();
          // Remove kRetOp or kDeviceRetOp operation and return its operand.
          // kRetOp and kDeviceRetOp should have just one operand unless they have
          // control dependencies.
          if (inner_op->getNumOperands() != 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    Node* ArgOp(int index, DataType type, const GraphDefBuilder::Options& opts) {
      return ops::SourceOp("_Arg",
                           opts.WithAttr("T", type).WithAttr("index", index));
    }
    
    Node* RetOp(int index, ops::NodeOut a, const GraphDefBuilder::Options& opts) {
      if (opts.HaveError()) return nullptr;
      NodeBuilder node_builder(opts.GetNameForOp("Retval"), "_Retval",
                               opts.op_registry());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
Back to top