Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 464 for reverting (0.2 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

                            // do change
                            changeClosure(file, originalContent)
                        } else if (context.iteration > 2) {
                            println "Reverting $file"
                            file.text = originalContent
                        }
                    }
                }
            }
    
            when:
            def result = runner.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      for (unsigned idx : layout_dependent_results) {
        OpResult result = op->getResult(idx);
    
        // If the op is layout agnostic, the new result type can be generated by
        // reverting `permutation`. Otherwise, operations with custom folding will
        // update the result type in `FoldOperandsPermutation`.
        if (layout_agnostic)
          result.setType(ReversePermuteShapedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    	// condition is introduced where an XDS response may be generated before the update, but not
    	// completed until after a response after the update. Essentially, we transition from v0 -> v1 ->
    	// v0 -> invalidate -> v1. Reverting a change we pushed violates our contract of monotonically
    	// moving forward in version. In practice, this is pretty rare and self corrects nearly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/iimport.go

    	n, _ := typ.(*types.Named)
    	return n
    }
    
    const blankMarker = "$"
    
    // tparamName returns the real name of a type parameter, after stripping its
    // qualifying prefix and reverting blank-name encoding. See tparamExportName
    // for details.
    func tparamName(exportName string) string {
    	// Remove the "path" from the type param name that makes it unique.
    	ix := strings.LastIndex(exportName, ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // This file contains rules used by the laterLower pass.
    
    // Simplify ISEL x $0 z into ISELZ
    (ISEL [a] x (MOVDconst [0]) z) => (ISELZ [a] x z)
    // Simplify ISEL $0 y z into ISELZ by inverting comparison and reversing arguments.
    (ISEL [a] (MOVDconst [0]) y z) => (ISELZ [a^0x4] y z)
    
    // SETBC, SETBCR is supported on ISA 3.1(Power10) and newer, use ISELZ for
    // older targets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelPathTranslator.java

                        .build();
            }
    
            Reporting reporting = model.getReporting();
            Reporting newReporting = null;
            if (reporting != null) {
                newReporting = Reporting.newBuilder(reporting)
                        .outputDirectory(alignToBaseDirectory(reporting.getOutputDirectory(), basedir))
                        .build();
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

        }
    
        def "problem replaced with a validation warning if mandatory id is missing"() {
            given:
            withReportProblemTask """
                problems.forNamespace('org.example.plugin').reporting {
                    it.details('Wrong API usage')
                }
            """
    
            when:
            run('reportProblem')
    
            then:
            verifyAll(receivedProblem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemProgressEventCrossVersionTest.groovy

        }
    
        def "Problems expose summary Tooling API events"() {
            given:
            withReportProblemTask """
                for(int i = 0; i < 10; i++) {
                    problems.forNamespace("org.example.plugin").reporting {
                        it.${targetVersion < GradleVersion.version("8.8") ? 'label("The \'standard-plugin\' is deprecated").category("deprecation", "plugin")' : 'id("adhoc-deprecation", "The \'standard-plugin\' is deprecated")' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.0.0.xml

    -->
    
    <!-- START SNIPPET: superpom -->
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      </properties>
    
      <build>
        <directory>${project.basedir}/target</directory>
        <outputDirectory>${project.build.directory}/classes</outputDirectory>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top