Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 235 for refStore (0.12 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            return path.replace(File.separatorChar, '/');
        }
    
        /**
         * Checks if a String is whitespace, empty ("") or null.
         * <p>
         * This function was copied from Apache Commons-Lang to restore TAPI compatibility
         * with Java 6 on old Gradle versions because StringUtils require SQLException which
         * is absent from Java 6.
         */
        public static boolean isBlank(String str) {
            int strLen;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/log/slog/logger_test.go

    func TestConnections(t *testing.T) {
    	var logbuf, slogbuf bytes.Buffer
    
    	// Revert any changes to the default logger. This is important because other
    	// tests might change the default logger using SetDefault. Also ensure we
    	// restore the default logger at the end of the test.
    	currentLogger := Default()
    	currentLogWriter := log.Writer()
    	currentLogFlags := log.Flags()
    	SetDefault(New(newDefaultHandler(loginternal.DefaultOutput)))
    	t.Cleanup(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

          "tf_saved_model.session_initializer"() {initializers = [@init_func_restore_op]} : () -> ()
    
          func.func @init_func_restore_op() -> () attributes {tf_saved_model.exported_names = ["restore"], tf_saved_model.initializer_type = "restore_op"} {
            %cst = "tf.Const"() {device = "", value = dense<[1.0, 2.0]> : tensor<2xf32>} : () -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/configmap.go

    			}
    
    			// Get the MeshConfig yaml from the config map.
    			mcYAML, err := getInjectConfigYaml(cfgMap, "config")
    			if err != nil {
    				return err
    			}
    
    			// Store the original YAML so we can restore later.
    			mu.Lock()
    			origCfg[c.Name()] = mcYAML
    			mu.Unlock()
    
    			// Parse the YAML.
    			mc, err := yamlToInjectConfig(mcYAML)
    			if err != nil {
    				return err
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    	if raceenabled {
    		racereleasemerge(unsafe.Pointer(&racecgosync))
    	}
    
    	// Do not unwind m->g0->sched.sp.
    	// Our caller, cgocallback, will do that.
    	restore = false
    }
    
    func unwindm(restore *bool) {
    	if *restore {
    		// Restore sp saved by cgocallback during
    		// unwind of g's stack (see comment at top of file).
    		mp := acquirem()
    		sched := &mp.g0.sched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

            is ParserResult.Failure -> {
                restore(mark)
                right().map(r)
            }
    
            is ParserResult.Success -> {
                lr.map(l)
            }
        }
    }
    
    
    internal
    fun <T> optional(parser: Parser<T>): Parser<T?> = {
        val mark = currentPosition
        when (val r = parser()) {
            is ParserResult.Failure -> {
                restore(mark)
                nullSuccess
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

            synchronized (lock) {
                // Currently only snapshot the console output listener. Should snapshot all output listeners, and cleanup in restore()
                return new SnapshotImpl(logLevel.get(), console);
            }
        }
    
        @Override
        public void restore(Snapshot state) {
            synchronized (lock) {
                SnapshotImpl snapshot = (SnapshotImpl) state;
                if (snapshot.logLevel != logLevel.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                }
                level = logLevel;
            }
    
            @Override
            public void stop() {
                try {
                    if (originalState != null) {
                        loggingRouter.restore(originalState);
                    }
                } finally {
                    originalState = null;
                }
            }
    
            public void flush() {
                loggingRouter.flush();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. src/runtime/race_ppc64le.s

    	MOVD    runtimeĀ·tls_g(SB), R10
    	MOVD    0(R10), g
    	MOVD    g_racectx(g), R3        // goroutine context
    	BL	racecall<>(SB)
    	MOVD	R15, R8	// restore the original function
    	MOVD	R17, R6 // restore arg list addr
    	// Call the atomic function.
    	// racecall will call LLVM race code which might clobber r30 (g)
    	MOVD	runtimeĀ·tls_g(SB), R10
    	MOVD	0(R10), g
    
    	MOVD	g_racectx(g), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

        shortNames:
          - vs
        singular: volumesnapshot
      scope: Namespaced
      versions:
        - additionalPrinterColumns:
            - description: Indicates if the snapshot is ready to be used to restore a volume.
              jsonPath: .status.readyToUse
              name: ReadyToUse
              type: boolean
            - description: If a new snapshot needs to be created, this contains the name of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
Back to top