Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,747 for jailed (0.15 sec)

  1. 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)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

          new Runnable() {
            @Override
            public void run() {}
          };
      boolean called = false;
    
      private void assertSingleCallWithCorrectParameters(
          Runnable command, long initialDelay, long delay, TimeUnit unit) {
        assertFalse(called); // only called once.
        called = true;
        assertEquals(INITIAL_DELAY, initialDelay);
        assertEquals(DELAY, delay);
        assertEquals(UNIT, unit);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

          new Runnable() {
            @Override
            public void run() {}
          };
      boolean called = false;
    
      private void assertSingleCallWithCorrectParameters(
          Runnable command, long initialDelay, long delay, TimeUnit unit) {
        assertFalse(called); // only called once.
        called = true;
        assertEquals(INITIAL_DELAY, initialDelay);
        assertEquals(DELAY, delay);
        assertEquals(UNIT, unit);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K 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. guava/src/com/google/common/util/concurrent/AggregateFuture.java

           *   cause if this Future has failed.
           *
           * - And this future *has* failed: This method is called only from handleException (through
           *   getOrInitSeenExceptions). handleException tried to call setException and failed, so
           *   either this Future was cancelled (which we ruled out with the isCancelled check above),
           *   or it had already failed. (It couldn't have completed *successfully* or even had
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. 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)
  8. pkg/volume/csi/csi_block.go

    		if err != nil {
    			return "", fmt.Errorf("failed to get NodeStageSecretRef %s/%s: %v",
    				csiSource.NodeStageSecretRef.Namespace, csiSource.NodeStageSecretRef.Name, err)
    		}
    	}
    
    	// Creating a stagingPath directory before call to NodeStageVolume
    	if err := os.MkdirAll(stagingPath, 0750); err != nil {
    		return "", errors.New(log("blockMapper.stageVolumeForBlock failed to create dir %s: %v", stagingPath, err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    					*called++
    					return checkFields(c, called, "client")
    				}
    			},
    		},
    		{
    			name: "RequestClientCert",
    			configureServer: func(config *Config, called *int) {
    				config.ClientAuth = RequestClientCert
    				config.VerifyConnection = func(c ConnectionState) error {
    					*called++
    					return checkFields(c, called, "server")
    				}
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. 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)
Back to top