Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 236 for emitItem (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

            best = op;
          }
        }
    
        if (!best) {
          assert(ready.empty());
          return result;  // happens for unused results for ops in the todo list
        }
    
        // Consider this operation emitted, and make its results available.
        ready.erase(std::find(ready.begin(), ready.end(), best));
        previous_op = best;
        for (Value result : best->getResults()) {
          todo.push(result);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/parse.go

    	lineno    int
    	stack     []openBlock
    	lineDepth int
    
    	corner bool // noticed corner case to ignore in cross-implementation testing
    
    	// inlines
    	s       string
    	emitted int // s[:emitted] has been emitted into list
    	list    []Inline
    
    	// for fixup at end
    	lists []*List
    	texts []*Text
    
    	backticks backtickParser
    }
    
    func (p *parseState) newText(pos Position, text string) *Text {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/sym.go

    // handling selector expressions.
    //
    // Ideally, Sym should be used for representing Go language constructs,
    // while cmd/internal/obj.LSym is used for representing emitted artifacts.
    //
    // NOTE: In practice, things can be messier than the description above
    // for various reasons (historical, convenience).
    type Sym struct {
    	Linkname string // link name
    
    	Pkg  *Pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/order.go

    		init = gState{ev.Args[1], gRunnable}
    		next = gState{ev.Args[1] + 1, gRunning}
    		return
    	case EvGoStartLocal:
    		// noseq means that this event is ready for merging as soon as
    		// frontier reaches it (EvGoStartLocal is emitted on the same P
    		// as the corresponding EvGoCreate/EvGoUnblock, and thus the latter
    		// is already merged).
    		// seqinc is a stub for cases when event increments g sequence,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

        void versionMapping(Action<? super VersionMappingStrategy> configureAction);
    
        /**
         * Silences the compatibility warnings for the Ivy publication for the specified variant.
         *
         * Warnings are emitted when Gradle features are used that cannot be mapped completely to Ivy xml.
         *
         * @param variantName the variant to silence warning for
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationTestUtils.groovy

            assert testTestOps*.details.testDescriptor.className as Set == ["org.gradle.Test", "org.gradle.Test"] as Set
            assert testTestOps*.details.testDescriptor.composite == [false, false]
    
            // outputs are emitted in test build operation hierarchy
            def testSuiteOutput = firstLevelTestOps[1].progress
            assert testSuiteOutput.size() == 4
            assert testSuiteOutput*.details.output.message.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

            static_cast<const ConcreteRewriteClass *>(this)
                ->convertFakeQuantAttrsToType(op, converter.expressed_type);
    
        if (!elementType) {
          // Note that the fakeQuantAttrsToType will have emitted the error.
          return true;
        }
    
        Type quantizedType = converter.convert(elementType);
        assert(quantizedType &&
               "Converter accepted a type that it did not convert");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            repositoriesContainerCallbackBuildOps.every { it.details.applicationId == callbackPluginApplication.details.applicationId }
        }
    
        def "applicationId for cross script buildscript configuration is emitted correctly"() {
            given:
            settingsFile << """
            gradle.allprojects {
                buildscript {
                    repositories.all {
                        println "script repo callback"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/inline.go

    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    func (p *parseState) emit(i int) {
    	if p.emitted < i {
    		p.list = append(p.list, &Plain{p.s[p.emitted:i]})
    		p.emitted = i
    	}
    }
    
    func (p *parseState) skip(i int) {
    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/accesslogs_test.go

    				},
    			})
    			// This is a negative test; there isn't much we can do other than wait a few seconds and ensure we didn't emit logs
    			// Logs should flush every 1s, so 2s should be plenty of time for logs to be emitted
    			time.Sleep(time.Second * 2)
    			count = logCount(t, to, testID)
    			if count > 0 != expectLogs {
    				return fmt.Errorf("expected logs '%v', got %v", expectLogs, count)
    			}
    			return nil
    		})
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top