Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for RESTORED (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
        }
    
        def "feature flag state is restored when running from cache"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile("""
                plugins {
                    id("groovy")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/runtime.go

    // Each key/value pair in labels is inserted into the label map in the
    // order provided, overriding any previous value for the same key.
    // The augmented label map will be set for the duration of the call to f
    // and restored once f returns.
    func Do(ctx context.Context, labels LabelSet, f func(context.Context)) {
    	defer SetGoroutineLabels(ctx)
    	ctx = WithLabels(ctx, labels)
    	SetGoroutineLabels(ctx)
    	f(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
         * For example, the value might have been restored from the configuration cache.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, T value);
    
        /**
         * Creates a cache backed by calculated values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_s390x.S

    	ld      %f14, 48(%r15)
    	ld      %f15, 56(%r15)
    
    	/* de-allocate stack frame */
    	la      %r15, 64(%r15)
    
    	/* restore general purpose registers */
    	lmg     %r6, %r15, 48(%r15)
    
    	br      %r14 /* restored by lmg */
    
    #ifdef __ELF__
    .section .note.GNU-stack,"",%progbits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/cc/tools/freeze_saved_model.h

    // FreezeSavedModel sets `frozen_graph_def` to a GraphDef of all nodes needed by
    // `outputs`. All variables in the supplied SavedModelBundle are converted to
    // constants, set to the value of the variables, by running the restored Session
    // in the SavedModelBundle.
    // WARNING: Only the variable checkpoints will be reflected in the frozen
    // graph_def. All saved_model assets will be ignored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

    }
    
    // Restores the collapsed dimensions to the `tensor_type`. `collapsed_dims`
    // designate the dimension indices that were collapsed to produce `tensor_type`.
    // The restored dimensions' sizes are 1, according to the semantics of
    // `XlaGatherOp (https://www.tensorflow.org/xla/operation_semantics#gather). The
    // resulting type's shape has `tensor_type.size() + collapsed_dims.size()`
    // dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    func assertStateEqual(t *testing.T, restoredState, expectedState ClaimInfoStateList) {
    	assert.Equal(t, expectedState, restoredState, "expected ClaimInfoState does not equal to restored one")
    }
    
    // TODO (https://github.com/kubernetes/kubernetes/issues/123552): reconsider what data gets stored in checkpoints and whether that is really necessary.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/IncrementalCompileOptions.java

        }
    
        /**
         * Returns the path to the directory where previously generated class files are backed up during the next, incremental compilation.
         * If the compilation fails, class files are restored from the backup.
         *
         * @since 6.6
         */
        @LocalState
        public RegularFileProperty getClassfileBackupDir() {
            return classfileBackupDir;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/term/term.go

    func IsTerminal(fd int) bool {
    	return isTerminal(fd)
    }
    
    // MakeRaw puts the terminal connected to the given file descriptor into raw
    // mode and returns the previous state of the terminal so that it can be
    // restored.
    func MakeRaw(fd int) (*State, error) {
    	return makeRaw(fd)
    }
    
    // GetState returns the current state of a terminal which may be useful to
    // restore the terminal after a signal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

    import org.gradle.internal.serialize.graph.writeCollection
    import org.gradle.internal.serialize.graph.writeFile
    
    
    internal
    fun Encoder.writeClassPath(classPath: ClassPath) {
        // Ensure that the proper type is going to be restored,
        // because it is important for the equality checks.
        if (classPath is TransformedClassPath) {
            writeBoolean(true)
            writeTransformedClassPath(classPath)
        } else {
            writeBoolean(false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top