Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 325 for Grappler (0.26 sec)

  1. .mvn/wrapper/maven-wrapper.properties

    distributionSha256Sum=83aaf914c785c9faed661f223000a92d1de9553f5c82d3b4362e66d9c031625f
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 21:44:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-8.9-20240529002035+0000-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 280 bytes
    - Viewed (0)
  3. .github/workflows/gradle-wrapper-validation.yml

    name: "Validate Gradle Wrapper"
    on: [push, pull_request]
    
    permissions:
      contents: read
    
    jobs:
      validation:
        name: "Validation"
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 348 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          mlir::func::FuncOp func = orig_func;
          // If there are potentially references to this func from within the
          // module, create a wrapper around it and decorate the wrapper with the
          // tf_saved_model attributes instead.
          if (!mlir::SymbolTable::symbolKnownUseEmpty(orig_func.getSymNameAttr(),
                                                      &module.getBodyRegion())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

                    TARGET_WRAPPER_FINAL + "/gradle-wrapper.properties")
            new File(getProject().getProjectDir(), TARGET_WRAPPER_FINAL).mkdirs()
            wrapper.setDistributionPath("somepath")
            wrapper.setDistributionSha256Sum("somehash")
        }
    
        Wrapper getTask() {
            return wrapper
        }
    
        def "wrapper has correct defaults"() {
            given:
            wrapper = createTask(Wrapper.class)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            executer.inDirectory(file("second")).withTasks("wrapper").run()
    
            then: "the checksum should be constant (unless there are code changes)"
            Hashing.sha256().hashFile(file("first/gradle/wrapper/gradle-wrapper.jar")) == EXPECTED_WRAPPER_JAR_HASH
    
            and:
            file("first/gradle/wrapper/gradle-wrapper.jar").md5Hash == file("second/gradle/wrapper/gradle-wrapper.jar").md5Hash
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/AbstractWrapperCrossVersionIntegrationTest.groovy

        }
    }
    """
            settingsFile << "rootProject.name = 'wrapper'"
            version(wrapperVersion).withTasks('wrapper').run()
    
            def executer = wrapperExecuter(wrapperVersion)
            executer
        }
    
        private GradleExecuter wrapperExecuter(GradleDistribution wrapper) {
            def executer = super.version(wrapper)
    
            if (!wrapper.supportsSpacesInGradleAndJavaOpts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	wrapper.SetName(s)
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) UID(s string) *ClaimParametersWrapper {
    	wrapper.SetUID(types.UID(s))
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) Namespace(s string) *ClaimParametersWrapper {
    	wrapper.SetNamespace(s)
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) Shareable(value bool) *ClaimParametersWrapper {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            given:
            configureServer(true)
            prepareWrapper(new URI(gradleBin))
    
            and:
            writeValidDistributionHash()
    
            when:
            def result = wrapperExecuter.withTasks("wrapper", "--gradle-version", "7.5").runWithFailure()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/build.gradle.kts

        dependsOn(executableJar)
    }
    
    // https://github.com/gradle/gradle/issues/26658
    // Before introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper.jar and used in promotion build
    // After introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper-executable.jar and processed
    //   by gr8, then the processed `gradle-wrapper.jar` need to be copied back to build/libs for promotion build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top