Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 339 for content_es (0.21 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java

        /**
         * Get the repository metadata associated with this marker.
         *
         * @return the metadata, or <code>null</code> if none loaded
         */
        Metadata getMetadata();
    
        /**
         * Set the metadata contents.
         *
         * @param metadata the metadata
         */
        void setMetadata(Metadata metadata);
    
        /**
         * Whether this represents a snapshot.
         *
         * @return if it is a snapshot
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic.py

    import tensorflow.compat.v2 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common
    
    
    # Verify that the tf.versions attribute exists. It is difficult to enforce
    # contents, since the version numbers change over time. The conversion logic
    # itself is verified in the common graphdef converter, so here just assert
    # it is being invoked.
    # CHECK: module
    # CHECK-SAME: tf.versions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

       * its input unmodified. Provided that the test suite is built without {@link
       * com.google.common.collect.testing.features.CollectionFeature#KNOWN_ORDER}, the tests will look
       * only at the returned contents without regard for order.
       */
      Iterable<E> order(List<E> insertionOrder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/test/cmd/util.go

    	for _, subCmd := range subCmds {
    		if subCmd.Name() == name {
    			return subCmd
    		}
    	}
    	t.Fatalf("Unable to find sub command %s", name)
    
    	return nil
    }
    
    // getKubeadmPath returns the contents of the environment variable KUBEADM_PATH
    // or panics if it's empty
    func getKubeadmPath() string {
    	kubeadmPath := os.Getenv("KUBEADM_PATH")
    	if len(kubeadmPath) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

    /**
     * Provides access to test resources for integration testing. Looks for the following directory in the test classpath:
     * <ul> <li>${testClass}/shared</li> <li>${testClass}/${testName}</li> </ul>
     *
     * Copies the contents of each such directory into a temporary directory for the test to use.
     */
    public class TestResources implements MethodRule {
        private final Logger logger = LoggerFactory.getLogger(TestResources.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to an input property to specify that line endings should be normalized
     * when snapshotting inputs. Two files with the same contents but different line endings
     * will be considered equivalent.
     *
     * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. pkg/file/file_test.go

    	}
    	f, err := os.Open(filepath.Join(d, "out"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	m, _ := f.Stat()
    	// Mode should be copied
    	assert.Equal(t, m.Mode(), 0o750)
    
    	body, _ := io.ReadAll(f)
    	// Contents should be copied
    	assert.Equal(t, body, []byte("hello world"))
    }
    
    func TestCopy(t *testing.T) {
    	copyTest(t, Copy)
    }
    
    func TestAtomicCopy(t *testing.T) {
    	copyTest(t, AtomicCopy)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:10:54 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactVisitor.java

    import org.gradle.api.internal.file.FileCollectionStructureVisitor;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.component.external.model.ImmutableCapabilities;
    
    /**
     * A visitor over the contents of a {@link ResolvedArtifactSet}. A {@link ResolvedArtifactSet} may contain zero or more sets of files, each set containing zero or more artifacts.
     */
    public interface ArtifactVisitor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    abstract class MyReportTask extends DefaultTask {
        @OutputFile
        abstract RegularFileProperty getOutputFile()
    
        @TaskAction
        def createFile() {
            outputFile.get().asFile.text = "Report contents"
        }
    }
    
    tasks.register('myReportTask', MyReportTask) {
        outputFile = layout.buildDirectory.file("reports/my-report.pdf")
    }
    
    tasks.register('archiveReportsTask') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compilation_cache.h

    std::optional<typename DeviceCompilationCache<ExecutableType>::Value>
    DeviceCompilationCache<ExecutableType>::Lookup(const Key& key) const {
      // The outer lock protects the existence of the cache entry. It does not
      // protect the contents of the cache entry.
      Entry* entry;
      {
        mutex_lock lock(compile_cache_mu_);
        // Find cache entry.
        auto it = cache_.find(key);
        if (it == cache_.cend()) {
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top