Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 724 for Restore (0.09 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                }
            }
    
            /**
             * Stops this logging system. Restores state from when started.
             */
            @Override
            public void stop() {
                try {
                    if (originalState != null) {
                        loggingSystem.restore(originalState);
                    }
                } finally {
                    enabled = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_arm64.s

    	MOVD	R0, libcall_r1(R19)		// save return value to libcall->r1
    	// TODO(rsc) floating point like amd64 in libcall->r2?
    
    	// GetLastError
    	MOVD	TEB_error(R18_PLATFORM), R0
    	MOVD	R0, libcall_err(R19)
    
    	// Restore callee-saved registers.
    	LDP	16(RSP), (R19, R20)
    	RET
    
    TEXT runtimeĀ·getlasterror(SB),NOSPLIT,$0
    	MOVD	TEB_error(R18_PLATFORM), R0
    	MOVD	R0, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/syscall/exec_bsd.go

    		}
    
    		// Place process group in foreground.
    		_, _, err1 = RawSyscall(SYS_IOCTL, uintptr(sys.Ctty), uintptr(TIOCSPGRP), uintptr(unsafe.Pointer(&pgrp)))
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Restore the signal mask. We do this after TIOCSPGRP to avoid
    	// having the kernel send a SIGTTOU signal to the process group.
    	runtime_AfterForkInChild()
    
    	// Chroot
    	if chroot != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/source/JavaUtilLoggingSystem.java

        @Override
        public Snapshot startCapture() {
            Snapshot snapshot = snapshot();
            install(LOG_LEVEL_MAPPING.get(requestedLevel));
            return snapshot;
        }
    
        @Override
        public void restore(Snapshot state) {
            SnapshotImpl snapshot = (SnapshotImpl) state;
            requestedLevel = snapshot.requestedLevel;
            if (snapshot.installed) {
                install(snapshot.javaUtilLevel);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/syscall/exec_freebsd.go

    		}
    
    		// Place process group in foreground.
    		_, _, err1 = RawSyscall(SYS_IOCTL, uintptr(sys.Ctty), uintptr(TIOCSPGRP), uintptr(unsafe.Pointer(&pgrp)))
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Restore the signal mask. We do this after TIOCSPGRP to avoid
    	// having the kernel send a SIGTTOU signal to the process group.
    	runtime_AfterForkInChild()
    
    	// Chroot
    	if chroot != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/README.md

    ```
    aws s3api restore-object --bucket srcbucket \
    --key object \
    --restore-request Days=3
    ```
    
    ### 4.1 Monitoring transition events
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. security/pkg/credentialfetcher/fetcher_test.go

    					}
    					if token != tc.expectedToken {
    						t.Errorf("%s: GetPlatformCredential returned %s, expected %s", id, token, tc.expectedToken)
    					}
    				}
    			}
    		})
    	}
    	// Restore token refresh for other tests.
    	plugin.SetTokenRotation(true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/restore_function_name.cc

    // The stablehlo-restore-function-name Pass.
    //===----------------------------------------------------------------------===//
    
    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_RESTOREFUNCTIONNAMEPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    // Restores entry function name from XlaCallModuleOp attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tests/integration/ambient/untaint/main_test.go

    		})
    		_, err := nodeC.Update(context.TODO(), &node, metav1.UpdateOptions{})
    		if err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // Untaint nodes if the test failed, so we restore the cluster to a usable state.
    func untaintNodes(t resource.Context) {
    	nodeC := t.Clusters().Default().
    		Kube().CoreV1().Nodes()
    	nodes, err := nodeC.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/asan_ppc64le.s

    	MOVD	FARG, CTR		// address of function to be called
    	MOVD	R0, 0(R1)		// clear back chain pointer
    	BL	(CTR)
    	MOVD	$0, R0			// C code can clobber R0 set it back to 0
    	MOVD	R16, R1			// restore R1;
    	MOVD	runtimeĀ·tls_g(SB), R10	// find correct g
    	MOVD	0(R10), g
    	RET
    
    // tls_g, g value for each thread in TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top