Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 491 for Generating (0.42 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Internal classes for generating identifiers.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 732 bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A {@link org.gradle.api.Plugin} for generating IDEA files.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 724 bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Types responsible for generating dependents components reports.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 29 09:36:44 UTC 2016
    - 737 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/TestProjectDuration.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import com.fasterxml.jackson.annotation.JsonInclude
    import groovy.transform.CompileStatic
    
    /**
     * Used for generating performance-test-durations.json by Jackson.
     */
    @CompileStatic
    @JsonInclude(JsonInclude.Include.NON_NULL)
    class TestProjectDuration {
        String testProject
        Long linux
        Long windows
        Long macOs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_side_effect.mlir

    // RUN: tf-opt %s -cse  | FileCheck %s
    // Checks that CSE runs without generating invalid IR and doesn't CSE ops like
    // NextIteration.Source and NextIteration.Sink.
    // CHECK-LABEL: func @main
    // CHECK: tf_executor.NextIteration.Source
    // CHECK: tf_executor.NextIteration.Source
    // CHECK: tf_executor.NextIteration.Sink
    // CHECK: tf_executor.NextIteration.Sink
    func.func @main() -> (tensor<1xi32>, tensor<1xi32>) {
      %0, %1 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 989 bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/basicInfoMap.dfprop

    # /---------------------------------------------------------------------------
    # basicInfoMap: (Required)
    #
    # The basic information for the tasks of DBFlute.
    # You should specify before your first generating.
    #
    # Core Properties:
    # o database: (Required)
    # o targetLanguage: (Required)
    # o targetContainer: (Required)
    # o packageBase: (Required)
    #
    # Adjustment Properties:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Renderers responsible for generating configuration reports from gathered models.
     */
    @NonNullApi
    package org.gradle.api.tasks.diagnostics.internal.configurations.renderer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 831 bytes
    - Viewed (0)
  8. hack/update-translations.sh

        fi
        mv "${TMP}" "${PO_FILE}"
      done
    fi
    
    if [[ "${generate_mo}" == "true" ]]; then
      echo "Generating .po and .mo files"
      for x in "${TRANSLATIONS}"/*/*/*/*.po; do
        msgcat -s "${x}" > tmp.po
        mv tmp.po "${x}"
        echo "generating .mo file for: ${x}"
        msgfmt "${x}" -o "$(dirname "${x}")/$(basename "${x}" .po).mo"
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. pkg/serviceaccount/jwt_test.go

    	if err != nil {
    		t.Fatalf("error making generator: %v", err)
    	}
    	rsaToken, err := rsaGenerator.GenerateToken(serviceaccount.LegacyClaims(*serviceAccount, *rsaSecret))
    	if err != nil {
    		t.Fatalf("error generating token: %v", err)
    	}
    	if len(rsaToken) == 0 {
    		t.Fatalf("no token generated")
    	}
    	rsaSecret.Data = map[string][]byte{
    		"token": []byte(rsaToken),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/KotlinDslReference.java

     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.provider.Property;
    
    /**
     * Configuration for generating Dokka based Kotlin DSL docs.
     */
    public abstract class KotlinDslReference {
    
        /**
         * The location of the final rendered Dokka content.
         */
        public abstract DirectoryProperty getRenderedDocumentation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top