Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 804 for emits (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h

    // Create a test pass for the above with a "fake" session, for lit testing.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInitializeVariablesInSessionInitializerTestPass();
    
    // Create a test pass that emits remarks for each analysis result for resources.
    // This pass is only used for lit testing.
    std::unique_ptr<OperationPass<ModuleOp>> CreateResourceAnalyzerTestPass();
    
    #define GEN_PASS_REGISTRATION
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/gofmt/gofmt.go

    	if r.state == nil {
    		r.state = <-r.prev
    	}
    	return r.state
    }
    
    // Warnf emits a warning message to the reporter's error stream,
    // without changing its exit code.
    func (r *reporter) Warnf(format string, args ...any) {
    	fmt.Fprintf(r.getState().err, format, args...)
    }
    
    // Write emits a slice to the reporter's output stream.
    //
    // Any error is returned to the caller, and does not otherwise affect the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultResolvedConfiguration.java

                .nagUser();
    
            rethrowFailure();
    
            // Disable deprecation, since the lenient configuration method also emits a deprecation warning
            return DeprecationLogger.whileDisabled(() -> configuration.getFirstLevelModuleDependencies(dependencySpec));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

        def setup() {
            enableProblemsApiCheck()
        }
    
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits deprecation warnings as build operation progress events with context"() {
            when:
            settingsFile "rootProject.name = 'root'"
    
            initScript  """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestListenerBuildOperationAdapterIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        abstract boolean isEmitsTestClassOperations()
        abstract void writeTestSources()
    
        def "emits build operations for junit tests"() {
            given:
            buildFile << """
                apply plugin: 'java'
                repositories { mavenCentral() }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/converter_gen.cc

        for (const auto &option : options)
          os << formatv("  b.add_{0}(std::move({0}));\n", option);
        os << "  return b.Finish();\n}\n";
      }
    }
    
    // For each TFLite op, emits a builder function that packs the TFLite op into
    // the corresponding FlatBuffer object.
    //
    // TODO(hinsu): Revisit if only builtin_options and mutating_variable_inputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/covcmd/cmddefs.go

    // cmd/cover tool (during instrumentation) to be passed on to the
    // compiler when the instrumented code is compiled. The cmd/cover tool
    // creates a struct of this type, JSON-encodes it, and emits the
    // result to a file, which the Go command then passes to the compiler
    // when the instrumented package is built.
    type CoverFixupConfig struct {
    	// Name of the variable (created by cmd/cover) containing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    // Returns the builtin op code for the given MLIR operation on success; emits
    // error and returns std::nullopt on failure.
    std::optional<tflite::BuiltinOperator> GetBuiltinOpCode(Operation *mlir_op);
    
    // Packs the given MLIR operation into a TFLite FlatBuffer operator object.
    // Returns the FlatBuffer offset for the operator on success; emits error and
    // returns std::nullopt on failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/image/jpeg/writer.go

    			e.writeByte(0x00)
    		}
    		bits <<= 8
    		nBits -= 8
    	}
    	e.bits, e.nBits = bits, nBits
    }
    
    // emitHuff emits the given value with the given Huffman encoder.
    func (e *encoder) emitHuff(h huffIndex, value int32) {
    	x := theHuffmanLUT[h][value]
    	e.emit(x&(1<<24-1), x>>24)
    }
    
    // emitHuffRLE emits a run of runLength copies of value encoded with the given
    // Huffman encoder.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

            result.testClass("SomeTests").assertTestCount(1, 0, 0)
            result.testClass("SomeTests").assertTestsExecuted('catAOk1')
        }
    
        def "emits warning when specifying a conflicting include/exclude"() {
            given:
            testSources.with {
                testClass('CategoryATests')
                    .withCategoryOrTag('CategoryA')
                    .with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top