Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 150 for RESTORED (0.12 sec)

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

            configurationCacheRun "ok"
    
            then:
            outputDoesNotContain("calculating value")
            outputContains("this.value = value")
        }
    
        def "Directory value can resolve paths after being restored"() {
            buildFile << """
                import ${Inject.name}
    
                class SomeTask extends DefaultTask {
                    @Internal
                    Directory value
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	expectedMachineState := expectedState.GetMachineState()
    	restoredMachineState := restoredState.GetMachineState()
    	assert.Equal(t, expectedMachineState, restoredMachineState, "expected MachineState does not equal to restored one")
    
    	expectedMemoryAssignments := expectedState.GetMemoryAssignments()
    	restoredMemoryAssignments := restoredState.GetMemoryAssignments()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

              }
            });
    
        // Run those tasks together.
        fakePool.runAll();
    
        // Check that the interruption of a SequentialExecutor's task is restored to the thread once
        // it is yielded. Clear the bit while checking so that the test doesn't hose JUnit or some other
        // test case.
        assertThat(Thread.interrupted()).isTrue();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        }
    
        /**
         * Creates a container for a value that has already been produced. For example, the value might have been restored from the configuration cache.
         *
         * Note: this is package protected. Use {@link CalculatedValueContainerFactory} instead.
         */
        CalculatedValueContainer(DisplayName displayName, T value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. docs/bucket/lifecycle/README.md

    mc admin tier add s3 source S3TIER --bucket s3bucket --prefix testprefix/ --use-aws-role
    ```
    
    Once transitioned, GET or HEAD on the object will stream the content from the transitioned tier. In the event that the object needs to be restored temporarily to the local cluster, the AWS [RestoreObject API](https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html) can be utilized.
    
    ```
    aws s3api restore-object --bucket srcbucket \
    --key object \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            gcFile.lastModified = daysAgo(2)
    
            and:
            // start as new process so journal is not restored from in-memory cache
            executer.withTasks("help").start().waitForFinish()
    
            then:
            outputDir1.assertDoesNotExist()
            outputDir2.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

              }
            });
    
        // Run those tasks together.
        fakePool.runAll();
    
        // Check that the interruption of a SequentialExecutor's task is restored to the thread once
        // it is yielded. Clear the bit while checking so that the test doesn't hose JUnit or some other
        // test case.
        assertThat(Thread.interrupted()).isTrue();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSet.java

     *
     * <p>This is required since the files in a given file dependency artifact set are unknown until
     * dependencies are executed. For this reason, we delay artifact selection until after this artifact
     * set is restored from the configuration cache. This differs from normal artifact variant selection
     * where we can perform selection before serialization.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. src/syscall/exec_unix_test.go

    	argv := []string{os.Args[0], "-test.run=^TestExecHelper$"}
    	syscall.Exec(os.Args[0], argv, os.Environ())
    
    	t.Error("syscall.Exec returned")
    }
    
    // Test that rlimit values are restored by exec.
    func TestRlimitRestored(t *testing.T) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") != "" {
    		fmt.Println(syscall.OrigRlimitNofile().Cur)
    		os.Exit(0)
    	}
    
    	orig := syscall.OrigRlimitNofile()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      }
      SavedModelBundle* bundle_ptr =
          saved_model_bundle ? saved_model_bundle->get() : bundle.get();
      tensorflow::SessionOptions session_options;
    
      // Force saved model states to be restored to CPU.
      (*session_options.config.mutable_device_count())["GPU"] = 0;
      auto load_status = tensorflow::LoadSavedModel(
          session_options, /* run_options = */ {}, std::string(saved_model_dir),
          tags, bundle_ptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top