Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,270 for jailed (0.16 sec)

  1. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    			if err = og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- plugin validation failed with err: %v", err)); err != nil {
    				return fmt.Errorf("RegisterPlugin error -- failed to send error at socket %s, err: %v", socketPath, err)
    			}
    			return fmt.Errorf("RegisterPlugin error -- pluginHandler.ValidatePluginFunc failed")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionListener.java

        /**
         * This method is called immediately before a task is executed.
         *
         * @param task The task about to be executed. Never null.
         */
        void beforeExecute(Task task);
    
        /**
         * This method is called immediately after a task has been executed. It is always called, regardless of whether the
         * task completed successfully, or failed with an exception.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/crypto/tls/cache_test.go

    	cc := certCache{}
    	p, _ := pem.Decode([]byte(rsaCertPEM))
    	if p == nil {
    		t.Fatal("Failed to decode certificate")
    	}
    
    	certA, err := cc.newCert(p.Bytes)
    	if err != nil {
    		t.Fatalf("newCert failed: %s", err)
    	}
    	certB, err := cc.newCert(p.Bytes)
    	if err != nil {
    		t.Fatalf("newCert failed: %s", err)
    	}
    	if certA.cert != certB.cert {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. test/reflectmethod5.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 38515: failed to mark the method wrapper
    // reflect.Type.Method itself as REFLECTMETHOD.
    
    package main
    
    import "reflect"
    
    var called bool
    
    type foo struct{}
    
    func (foo) X() { called = true }
    
    var h = reflect.Type.Method
    
    func main() {
    	v := reflect.ValueOf(foo{})
    	m := h(v.Type(), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 19 03:12:32 UTC 2020
    - 544 bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_signal_ios_arm64.c

    	if (ret) {
    		fprintf(stderr, "runtime/cgo: mach_port_allocate failed: %d\n", ret);
    		abort();
    	}
    	ret = mach_port_insert_right(
    		mach_task_self(),
    		port,
    		port,
    		MACH_MSG_TYPE_MAKE_SEND);
    	if (ret) {
    		fprintf(stderr, "runtime/cgo: mach_port_insert_right failed: %d\n", ret);
    		abort();
    	}
    
    	ret = thread_set_exception_ports(
    		mach_thread_self(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskListenerInternal.java

    public interface TaskListenerInternal {
        /**
         * This method is called immediately before a task is executed.
         *
         * @param taskIdentity The identity of the task about to be executed. Never null.
         */
        void beforeExecute(TaskIdentity<?> taskIdentity);
    
        /**
         * This method is call immediately after a task has been executed. It is always called, regardless of whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. internal/bucket/replication/datatypes.go

    	Pending StatusType = "PENDING"
    
    	// Completed - replication completed ok.
    	Completed StatusType = "COMPLETED"
    
    	// CompletedLegacy was called "COMPLETE" incorrectly.
    	CompletedLegacy StatusType = "COMPLETE"
    
    	// Failed - replication failed.
    	Failed StatusType = "FAILED"
    
    	// Replica - this is a replica.
    	Replica StatusType = "REPLICA"
    )
    
    // String returns string representation of status
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/volume/nfs/nfs_test.go

    	}
    	if _, err := os.Stat(volumePath); err == nil {
    		t.Errorf("TearDown() failed, volume path still exists: %s", volumePath)
    	} else if !os.IsNotExist(err) {
    		t.Errorf("TearDown() failed: %v", err)
    	}
    	log = fake.GetLog()
    	if len(log) != 1 {
    		t.Errorf("Unmount was not called exactly one time. It was called %d times.", len(log))
    	} else {
    		if log[0].Action != mount.FakeActionUnmount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  9. tests/util/leak/check.go

    // To use, simply call leak.Check(t) at the start of a test; Do not call it in defer.
    // It is recommended to call this as the first step, as Cleanup is called in LIFO order; this ensures any
    // Cleanup's called in the test happen first.
    // Any existing goroutines before the test starts are filtered out. This ensures a single test failing doesn't
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/sidecar.go

    	if err != nil {
    		return fmt.Errorf("failed exec on pod %s/%s: %v. Command: %s. Output:\n%s",
    			s.podNamespace, s.podName, err, command, stdout+stderr)
    	}
    
    	if err := protomarshal.UnmarshalAllowUnknown([]byte(stdout), out); err != nil {
    		return fmt.Errorf("failed parsing Envoy admin response from '/%s': %v\nResponse JSON: %s", path, err, stdout)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top