Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 450 for eventual (0.1 sec)

  1. tensorflow/c/experimental/ops/io_ops.cc

    //       if found proceed to read it as a V2 checkpoint;
    //     - Otherwise the V1 read path is invoked.
    //   Relying on this behavior is not recommended, as the ability to fall back to
    //   read V1 might be deprecated and eventually removed.
    //
    //   By default, restores the named tensors in full.  If the caller wishes to
    //   restore specific slices of stored tensors, "shape_and_slices" should be
    //   non-empty strings and correspondingly well-formed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

            try {
                byte[] manifestBytes = FileUtils.readFileToByteArray(manifestFile);
                manifestBytes = prepareManifestBytesForInteroperability(manifestBytes);
                // Eventually convert manifest content to UTF-8 before handing it to java.util.jar.Manifest
                if (!DEFAULT_CONTENT_CHARSET.equals(contentCharset)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. pkg/registry/rbac/clusterrolebinding/policybased/storage.go

    		clusterRoleBinding := obj.(*rbac.ClusterRoleBinding)
    
    		// if we're only mutating fields needed for the GC to eventually delete this obj, return
    		if rbacregistry.IsOnlyMutatingGCFields(obj, oldObj, kapihelper.Semantic) {
    			return obj, nil
    		}
    
    		// if we're explicitly authorized to bind this clusterrole, return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

                    unsupportedProviderTypes()
                    bind(BeanCodec)
                }.build()
            )
    
        /**
         * Value sources and build services are currently unsupported but could eventually
         * be captured as part of the serialized action [environment][org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph.environment]
         **/
        private
        fun BindingsBuilder.unsupportedProviderTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponentIntegrationTest.groovy

                    assert configurations.javadocElements
                    assert sourceSets.main
                }
            """
    
            expect:
            succeeds "verify"
        }
    
        // TODO: Eventually we want accessors to be generated for the `java` component so that
        // we can use `java {}` instead of `named<JvmSoftwareComponentInternal>("java") {}`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * cannot be found in a repository, call this method. Otherwise, Gradle will perform a request
     * to find out. It doesn't matter if the module is eventually not found, as Gradle would handle
     * this appropriately by looking at the next repository: the consequence is just a remote call.
     *
     */
    public interface ArtifactResolutionDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin_test.go

        }
    }`
    
    type mockInterceptRuleMgr struct {
    	lastRedirect []*Redirect
    }
    
    func buildMockConf(ambientEnabled bool, eventURL string) string {
    	return fmt.Sprintf(
    		mockConfTmpl,
    		"1.0.0",
    		"1.0.0",
    		"eth0",
    		testSandboxDirectory,
    		eventURL,
    		ambientEnabled,
    		"mock",
    	)
    }
    
    func buildFakePodAndNSForClient() (*corev1.Pod, *corev1.Namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/jvm/component/internal/JvmSoftwareComponentInternal.java

         */
        NamedDomainObjectContainer<JvmFeatureInternal> getFeatures();
    
        /**
         * Get all test suites owned by this component.
         *
         * TODO: A test suite is a feature, so this method should eventually be removed and all
         * suites should be accessed via {@link #getFeatures()}.
         */
        NamedDomainObjectContainer<TestSuite> getTestSuites();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

    import org.gradle.api.tasks.TaskProvider;
    import org.gradle.util.GradleVersion;
    
    import java.nio.charset.Charset;
    
    /**
     * Opinionated plugin that generates the release notes for a Gradle release.
     *
     * TODO: Maybe eventually convert this asciidoc too, so everything uses the same markup language.
     */
    public class GradleReleaseNotesPlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 11:32:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    import static org.gradle.util.TestUtil.objectFactory
    /**
     * Tests {@link DefaultAttributesSchema.DefaultAttributeSelectionSchema}. The class-under-test should
     * eventually be moved into its own file so that we don't need to instantiate it indirectly through a
     * {@link DefaultAttributesSchema} instance. Most tests in {@link DefaultAttributesSchemaTest} probably
     * belong here instead.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top