Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 506 for hook1 (0.04 sec)

  1. src/cmd/go/testdata/vcstest/svn/hello.txt

    cpath: /
    
    
    17 107
    -- db/txn-current --
    0
    -- db/txn-current-lock --
    -- db/uuid --
    53cccb44-0fca-40a2-b0c5-acaf9e75039a
    -- db/write-lock --
    -- format --
    5
    -- hooks/pre-revprop-change --
    #!/bin/sh
    
    -- hooks/pre-revprop-change.bat --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/handlers.go

    		if err != nil {
    			msg = fmt.Sprintf("Exec lifecycle hook (%v) for Container %q in Pod %q failed - error: %v, message: %q", handler.Exec.Command, container.Name, format.Pod(pod), err, string(output))
    			klog.V(1).ErrorS(err, "Exec lifecycle hook for Container in Pod failed", "execCommand", handler.Exec.Command, "containerName", container.Name, "pod", klog.KObj(pod), "message", string(output))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/internal/poll/hook_windows.go

    package poll
    
    import "syscall"
    
    // CloseFunc is used to hook the close call.
    var CloseFunc func(syscall.Handle) error = syscall.Closesocket
    
    // AcceptFunc is used to hook the accept call.
    var AcceptFunc func(syscall.Handle, syscall.Handle, *byte, uint32, uint32, uint32, *uint32, *syscall.Overlapped) error = syscall.AcceptEx
    
    // ConnectExFunc is used to hook the ConnectEx call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 07 21:54:36 UTC 2017
    - 668 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    		if webhookConfig.GetName() != "" &&
    			(webhookConfig.Name == defaultIstioValidatingWebhookName ||
    				strings.HasPrefix(webhookConfig.Name, istioValidatingWebhookNamePrefix)) {
    			for _, hook := range webhookConfig.Webhooks {
    				reportWebhookURL(resource, hook.Name, hook.ClientConfig)
    			}
    		}
    
    		return true
    	})
    
    	c.ForEach(gvk.MutatingWebhookConfiguration, func(resource *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	return cStatus
    }
    
    // executePreStopHook runs the pre-stop lifecycle hooks if applicable and returns the duration it takes.
    func (m *kubeGenericRuntimeManager) executePreStopHook(ctx context.Context, pod *v1.Pod, containerID kubecontainer.ContainerID, containerSpec *v1.Container, gracePeriod int64) int64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/net/resolverdialfunc_test.go

    			},
    			Question: func(h dnsmessage.Header, q dnsmessage.Question) {
    				t.Logf("Header: %+v for %q (type=%v, class=%v)", h,
    					q.Name.String(), q.Type, q.Class)
    			},
    			// TODO: add test without HandleA* hooks specified at all, that Go
    			// doesn't issue retries; map to something terminal.
    			HandleA: func(w AWriter, name string) error {
    				w.AddIP([4]byte{1, 2, 3, 4})
    				w.AddIP([4]byte{5, 6, 7, 8})
    				return nil
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config.go

    	}
    	c.PostStartHooks[name] = PostStartHookConfigEntry{hook: hook, originatingStack: string(debug.Stack())}
    
    	return nil
    }
    
    // AddPostStartHookOrDie allows you to add a PostStartHook, but dies on failure.
    func (c *Config) AddPostStartHookOrDie(name string, hook PostStartHookFunc) {
    	if err := c.AddPostStartHook(name, hook); err != nil {
    		klog.Fatalf("Error registering PostStartHook %q: %v", name, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcEventsIntegrationTest.groovy

    class BuildSrcEventsIntegrationTest extends AbstractIntegrationSpec {
        @UnsupportedWithConfigurationCache(because = "uses buildFinished")
        def "buildSrc build finished hook is executed after running main tasks and before root build build finished hook"() {
            file("buildSrc/build.gradle") << """
                System.clearProperty("buildsrc")
    
                gradle.buildFinished {
                    println "buildSrc finished"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue31053.dir/main.go

    	f.unexported()    // ERROR "f.unexported undefined .cannot refer to unexported field or method unexported."
    	_ = f.hook        // ERROR "f.hook undefined .cannot refer to unexported field or method hook."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 07:44:07 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeFinishExecutor.java

    import java.util.List;
    
    public interface BuildTreeFinishExecutor {
        /**
         * Finishes any work and runs any pending user clean up code such as build finished hooks, build service cleanup and so on.
         *
         * @param failures The failures to report to the build finished hooks.
         * @return The exception to throw, packages up the given failures plus any failures finishing the build.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 22 06:21:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top