Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for RESTORED (0.15 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            outputs.noneRecompiled()
            // We keep old classes since we support incremental compilation after failure
            outputs.deletedClasses()
        }
    
        def "old classes are restored after the compile failure and incremental compilation works after a failure"() {
            source("class A {}", "class B {}")
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            } finally {
                otherThread.shutdown()
            }
    
            assertTrue(enabledOnOtherThread)
        }
    
        @Test
        fun `input tracking is restored to the state when it was disabled`() {
            val state = InputTrackingState()
            state.disableForCurrentThread() // <1>
            state.disableForCurrentThread() // <2>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/LocaleSupportDaemonIntegrationTest.groovy

            daemons.daemons.size() == 1
    
            when:
            runWithLocale locales[1]
    
            then:
            ranWithLocale locales[1]
            daemons.daemons.size() == 2
        }
    
        def "locale is restored after build"() {
            def startLocale = locales[0]
            def changeLocale = locales[1]
    
            buildScript """
                task printLocale {
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/flagalloc.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    // flagalloc allocates the flag register among all the flag-generating
    // instructions. Flag values are recomputed if they need to be
    // spilled/restored.
    func flagalloc(f *Func) {
    	// Compute the in-register flag value we want at the end of
    	// each block. This is basically a best-effort live variable
    	// analysis, so it can be much simpler than a full analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2_test.go

    	toBeRestored := make(map[string]string)
    	toBeRestored[xhttp.AmzRestore] = ongoingRestoreObj().String()
    
    	restored := make(map[string]string)
    	restored[xhttp.AmzRestore] = completedRestoreObj(time.Now().UTC().Add(time.Hour)).String()
    
    	restoredExpired := make(map[string]string)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            outputDoesNotContain 'onProgress'
            outputContains 'onFinished'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/20001')
        def "build service from buildSrc is not restored"() {
            given:
            def onFinishMessage = "You won't see me!"
            withListenerBuildServicePlugin onFinishMessage
            createDir('buildSrc') {
                file('settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    	}
    	if !equal(x, &y) {
    		t.Errorf("restored index doesn't match saved index %s", tc.name)
    	}
    
    	// Reread as forced 64.
    	y = Index{}
    	maxData32 = -1
    	if err := y.Read(bytes.NewReader(buf.Bytes())); err != nil {
    		t.Errorf("failed reading index %s (%s)", tc.name, err)
    	}
    	if !equal(x, &y) {
    		t.Errorf("restored index doesn't match saved index %s", tc.name)
    	}
    
    	return size
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    // which contain the "real" checkpoint keys into the TensorBundle SSTable.
    // They also contain the logic needed to take the restored tensors from
    // RestoreV2 and load them back into the "object" they came from via their
    // overridden "restore" method:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      output tensors.
    
      Args:
        graph_def: the converted GraphDef.
    
      Returns:
        The GraphDef with Retval nodes removed and output tensor names restored.
      """
      output_renaming_map = {}
      with session.Session(graph=ops.Graph()):
        importer.import_graph_def(graph_def, name='')
        graph = ops.get_default_graph()
        for op in graph.get_operations():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    	}
    
    	sc.cache.SetMachineState(checkpoint.MachineState)
    	sc.cache.SetMemoryAssignments(checkpoint.Entries)
    
    	klog.V(2).InfoS("State checkpoint: restored state from checkpoint")
    
    	return nil
    }
    
    // saves state to a checkpoint, caller is responsible for locking
    func (sc *stateCheckpoint) storeState() error {
    	checkpoint := NewMemoryManagerCheckpoint()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top