Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for REGISTERS (0.2 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	} else {
    		state.currentState.slots = state.currentState.slots[:numSlots]
    	}
    	if cap(state.currentState.registers) < len(state.registers) {
    		state.currentState.registers = make([][]SlotID, len(state.registers))
    	} else {
    		state.currentState.registers = state.currentState.registers[:len(state.registers)]
    	}
    
    	// A relatively small slice, but used many times as the return from processValue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/StandaloneModeTestServiceRegistrar.kt

    import org.jetbrains.kotlin.analysis.test.framework.test.configurators.AnalysisApiTestServiceRegistrar
    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * Registers services specific to Standalone mode *tests*, in addition to the Standalone production services registered by
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLifecyclePluginIntegrationTest.groovy

            def configurationCache = newConfigurationCacheFixture()
            def buildDirName = 'my-build-dir'
            def buildDir = file(buildDirName)
            buildFile """
    
                // lifecycle-base plugin registers layout.buildDirectory as a build output
                plugins { id 'lifecycle-base' }
    
                abstract class MyBuildService implements $BuildService.name<${BuildServiceParameters.name}.None> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeRegistry.java

     * Allows registration of software types implemented by plugins.
     */
    @ServiceScope(Scope.Build.class) // TODO: Might be too specific a scope, but needed something there
    public interface SoftwareTypeRegistry {
        /**
         * Registers a plugin as providing a software type.  Cannot be called again once the list of software types has been
         * queried via {@link #getSoftwareTypeImplementations()}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    // Sparsifies model to encode sparse tensors with proper format. Throws error if
    // sparsification fails.
    PyObject* MlirSparsifyModel(PyObject* data);
    
    // Registers the given custom opdefs to TensorFlow global op registry.
    PyObject* RegisterCustomOpdefs(PyObject* list);
    
    // Returns the collected TFLite conversion errors.
    std::vector<std::string> RetrieveCollectedErrors();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/revisions/tag_watcher.go

    	if !kube.WaitForCacheSync("tag watcher", stopCh, p.webhooks.HasSynced) {
    		return
    	}
    	// Notify handlers of initial state
    	p.notifyHandlers()
    	p.queue.Run(stopCh)
    }
    
    // AddHandler registers a new handler for updates to tag changes.
    func (p *tagWatcher) AddHandler(handler TagHandler) {
    	p.handlers = append(p.handlers, handler)
    }
    
    func (p *tagWatcher) HasSynced() bool {
    	return p.queue.HasSynced()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

    import static org.gradle.api.internal.initialization.DefaultScriptClassPathResolver.InstrumentationPhase.NOT_INSTRUMENTED;
    
    /**
     * Registers all Artifact transforms required for the instrumentation pipelines.
     */
    public class InstrumentationTransformRegisterer {
    
        private static final String BUILD_SERVICE_NAME = "__InternalCacheInstrumentationDataBuildService__";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTargetTest.groovy

        def registersSoftwareTypes = Mock(RegistersSoftwareTypes)
        def softwareTypePluginMetadata = Mock(TypeMetadata)
        def propertyMetadata = Mock(PropertyMetadata)
    
        def "adds software type plugins for plugin that registers software types"() {
            when:
            pluginTarget.applyImperative(null, plugin)
    
            then: // setup property metadata
            2 * inspectionScheme.getMetadataStore() >> metadataStore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    func (s *Server) getMetricMethodBucket(method string) string {
    	if s.metricsMethodBuckets.Has(method) {
    		return method
    	}
    	return "other"
    }
    
    // InstallDefaultHandlers registers the default set of supported HTTP request
    // patterns with the restful Container.
    func (s *Server) InstallDefaultHandlers() {
    	s.addMetricsBucketMatcher("healthz")
    	healthz.InstallHandler(s.restfulCont,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

            this.moduleReplacements = moduleReplacements;
        }
    
        @Override
        public ModuleConflictResolver<ComponentState> getResolver() {
            return resolver;
        }
    
        /**
         * Registers new newModule and returns an instance of a conflict if conflict exists.
         */
        @Override
        public PotentialConflict registerCandidate(CandidateModule candidate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top