Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 118 of 118 for Succeeded (0.13 sec)

  1. docs/site-replication/run-ssec-object-replication-with-compression.sh

    #if [[ ${RESULT} != *"Server side encryption specified with SSE-C with compression not allowed"* ]]; then
    #	echo "BUG: Loading an SSE-C object to site with compression should fail. Succeeded though."
    #	exit_1
    #fi
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    sleep 30
    
    # List the objects from source site
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/cache_based_manager.go

    			// Return the fetch result instead.
    			return object, err
    		}
    		if (err == nil && !isObjectOlder(object, data.object)) || apierrors.IsNotFound(err) {
    			// If the fetch succeeded with a newer version of the object, or if the
    			// object could not be found in the apiserver, update the cached data to
    			// reflect the current status.
    			data.object = object
    			data.err = err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/sync/mutex.go

    		if race.Enabled {
    			race.Acquire(unsafe.Pointer(m))
    		}
    		return
    	}
    	// Slow path (outlined so that the fast path can be inlined)
    	m.lockSlow()
    }
    
    // TryLock tries to lock m and reports whether it succeeded.
    //
    // Note that while correct uses of TryLock do exist, they are rare,
    // and use of TryLock is often a sign of a deeper problem
    // in a particular use of mutexes.
    func (m *Mutex) TryLock() bool {
    	old := m.state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/objdump/objdump_test.go

    	t.Parallel()
    
    	obj := filepath.Join("testdata", "go116.o")
    	cmd := testenv.Command(t, objdumpPath(t), obj)
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Fatalf("objdump go116.o succeeded unexpectedly")
    	}
    	if !strings.Contains(string(out), "go object of a different version") {
    		t.Errorf("unexpected error message:\n%s", out)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/syscall/exec_unix.go

    		_, err1 := Wait4(pid, &wstatus, 0, nil)
    		for err1 == EINTR {
    			_, err1 = Wait4(pid, &wstatus, 0, nil)
    		}
    		return 0, err
    	}
    
    	// Read got EOF, so pipe closed on exec, so exec succeeded.
    	return pid, nil
    }
    
    // Combination of fork and exec, careful to be thread safe.
    func ForkExec(argv0 string, argv []string, attr *ProcAttr) (pid int, err error) {
    	return forkExec(argv0, argv, attr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/sync/map_test.go

    func TestCompareAndSwap_NonExistingKey(t *testing.T) {
    	m := &sync.Map{}
    	if m.CompareAndSwap(m, nil, 42) {
    		// See https://go.dev/issue/51972#issuecomment-1126408637.
    		t.Fatalf("CompareAndSwap on a non-existing key succeeded")
    	}
    }
    
    func TestMapRangeNoAllocations(t *testing.T) { // Issue 62404
    	testenv.SkipIfOptimizationOff(t)
    	var m sync.Map
    	allocs := testing.AllocsPerRun(10, func() {
    		m.Range(func(key, value any) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/syscall/exec_libc.go

    	if err1 != 0 {
    		runtime_AfterFork()
    		return 0, err1
    	}
    
    	if r1 != 0 {
    		// parent; return PID
    		runtime_AfterFork()
    		return int(r1), 0
    	}
    
    	// Fork succeeded, now in child.
    
    	// Session ID
    	if sys.Setsid {
    		_, err1 = setsid()
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Set process group
    	if sys.Setpgid || sys.Foreground {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. src/runtime/crash_unix_test.go

    	exe, err := buildTestProg(t, "testprog")
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = testenv.CleanCmdEnv(exec.Command(exe, "SignalExitStatus")).Run()
    	if err == nil {
    		t.Error("test program succeeded unexpectedly")
    	} else if ee, ok := err.(*exec.ExitError); !ok {
    		t.Errorf("error (%v) has type %T; expected exec.ExitError", err, err)
    	} else if ws, ok := ee.Sys().(syscall.WaitStatus); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top