Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for emits (0.1 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

    class ConfigurationCacheBuildOperationsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits no load/store build operations when configuration cache is not used"() {
            given:
            withLibBuild()
            withAppBuild()
    
            when:
            inDirectory 'app'
            run 'assemble'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskRealizationBuildOperationIntegrationTest.groovy

    class ConfigurationCacheTaskRealizationBuildOperationIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def buildOperations = new BuildOperationsFixture(executer, testDirectoryProvider)
    
        def "load after store emits two realization operations with the same id"() {
            buildFile << """
                tasks.register("foo")
            """
    
            when:
            configurationCacheRun(":foo")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // model is of an open op system.
        //
        //  The following algorithm is followed:
        //   if flex is enabled and the op is allowlisted as flex
        //     we emit op as flex.
        //   if custom is enabled
        //    we emit the op as custom.
        auto node_def = GetTensorFlowNodeDef(inst);
        if (!node_def) {
          return std::nullopt;
        }
    
        std::string op_name = node_def->op();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    func (s *State) TailCall(v *ssa.Value) *obj.Prog {
    	p := s.Call(v)
    	p.As = obj.ARET
    	return p
    }
    
    // PrepareCall prepares to emit a CALL instruction for v and does call-related bookkeeping.
    // It must be called immediately before emitting the actual CALL instruction,
    // since it emits PCDATA for the stack map at the call (calls are safe points).
    func (s *State) PrepareCall(v *ssa.Value) {
    	idx := s.livenessMap.Get(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	case 8:
    		return ctxt.Arch.ByteOrder.Uint64(buf)
    	default:
    		panic("unexpected pointer size")
    	}
    
    }
    
    // setupLocList creates the initial portion of a location list for a
    // user variable. It emits the encoded start/end of the range and a
    // placeholder for the size. Return value is the new list plus the
    // slot in the list holding the size (to be updated later).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - ACTION_REQUIRED
      When an Indexed Job has a number of completions higher than 10^5 and parallelism higher than 10^4, and a big number of Indexes fail, Kubernetes might not be able to track the termination of the Job. Kubernetes now emits a warning, at Job creation, when the Job manifest exceeds both of these limits. ([#118420](https://github.com/kubernetes/kubernetes/pull/118420), [@alculquicondor](https://github.com/alculquicondor)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return "", "", err
    	}
    	return importGo, "", nil
    }
    
    // Run SWIG on all SWIG input files.
    // TODO: Don't build a shared library, once SWIG emits the necessary
    // pragmas for external linking.
    func (b *Builder) swig(a *Action, objdir string, pcCFLAGS []string) (outGo, outC, outCXX []string, err error) {
    	p := a.Package
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. callbacks/query.go

    							}
    
    							columnStmt := gorm.Statement{
    								Table: tableAliasName, DB: db, Schema: relation.FieldSchema,
    								Selects: join.Selects, Omits: join.Omits,
    							}
    
    							selectColumns, restricted := columnStmt.SelectAndOmitColumns(false, false)
    							for _, s := range relation.FieldSchema.DBNames {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. releasenotes/notes/48882.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 216 bytes
    - Viewed (0)
  10. RELEASE.md

    *   `tf.cond` emits a StatelessIf op if the branch functions are stateless and
        do not touch any resources.
    *   `tf.cond`, `tf.while` and `if` and `while` in AutoGraph now accept a
        nonscalar predicate if has a single element. This does not affect non-V2
        control flow.
    *   `tf.while_loop` emits a StatelessWhile op if the cond and body functions are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top