Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for content_es (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * }
         * </pre>
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * @param paths The contents of the file collection. Evaluated as per {@link #files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            1 * fileResolver.resolve("src1") >> file1
            1 * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
        }
    
        def "can use a file collection with changing contents to specify the contents of the collection"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def src = Mock(MinimalFileSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    		fmt.Printf("edge %s->%s\n", e.p, e.b)
    	}
    
    	// Clear state.
    	for _, vid := range e.cachedVals {
    		delete(e.cache, vid)
    	}
    	e.cachedVals = e.cachedVals[:0]
    	for k := range e.contents {
    		delete(e.contents, k)
    	}
    	e.usedRegs = 0
    	e.uniqueRegs = 0
    	e.finalRegs = 0
    	e.rematerializeableRegs = 0
    
    	// Live registers can be sources.
    	for _, x := range srcReg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    /*
     * Styles for page header.
     */
    .title {
        color:var(--title-color);
        margin:10px 0;
    }
    .sub-title {
        margin:5px 0 0 0;
    }
    ul.contents-list {
        margin: 0 0 15px 0;
        padding: 0;
        list-style: none;
    }
    ul.contents-list li {
        font-size:0.93em;
    }
    /*
     * Styles for headings.
     */
    body.class-declaration-page .summary h2,
    body.class-declaration-page .details h2,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

            if ( !this.fileLocator.isRootOrShare() ) {
                exists();
                return this.lastAccess;
            }
            return 0L;
        }
    
    
        /**
         * List the contents of this SMB resource. The list returned by this
         * method will be;
         *
         * <ul>
         * <li>files and directories contained within this resource if the
         * resource is a normal disk file directory,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It synchronizes the contents of a directory with its source.
    
    This can be useful for doing things such as installing your application, creating an exploded copy of your archives, or maintaining a copy of the project's dependencies.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `@link:{javadocPath}/org/gradle/api/tasks/IgnoreEmptyDirectories.html[IgnoreEmptyDirectories]`
    | `File` or `Iterable&lt;File&gt;`+++*+++
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterators.java

       * avoid memory leaks when an element is no longer necessary.
       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterators.java

       * avoid memory leaks when an element is no longer necessary.
       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        )
        quantization.quantize_saved_model(
            self._input_saved_model_path,
            self._output_saved_model_path,
            config,
        )
    
        # Test the contents of the report file, which is a textproto of
        # `QuantizationResults`.
        self.assertTrue(os.path.exists(report_file_path))
        with open(report_file_path, 'r') as f:
          quantization_results_textpb = f.read()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top