Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for getAlg (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

        public GradleScopeServices(final ServiceRegistry parent) {
            super(Scope.Gradle.class, "Gradle-scope services", parent);
            register(registration -> {
                for (GradleModuleServices services : parent.getAll(GradleModuleServices.class)) {
                    services.registerGradleServices(registration);
                }
            });
        }
    
        @Provides
        OptionReader createOptionReader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    // This must be called with preemption enabled.
    func gcAssistAlloc(gp *g) {
    	// Don't assist in non-preemptible contexts. These are
    	// generally fragile and won't allow the assist to block.
    	if getg() == gp.m.g0 {
    		return
    	}
    	if mp := getg().m; mp.locks > 0 || mp.preemptoff != "" {
    		return
    	}
    
    	// This extremely verbose boolean indicates whether we've
    	// entered mark assist from the perspective of the tracer.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    			}
    			sanitizeServerHostNamespace(s, gatewayConfig.Namespace)
    			gatewayNameForServer[s] = gatewayName
    			log.Debugf("MergeGateways: gateway %q processing server %s :%v", gatewayName, s.Name, s.Hosts)
    
    			cn := s.GetTls().GetCredentialName()
    			if cn != "" && proxy.VerifiedIdentity != nil {
    				rn := credentials.ToResourceName(cn)
    				parse, _ := credentials.ParseResourceName(rn, proxy.VerifiedIdentity.Namespace, "", "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

    void PrepareQuantizeDRQPass::removeAllStatsOp(func::FuncOp func) {
      func.walk([&](quantfork::StatisticsOp stats_op) {
        stats_op.replaceAllUsesWith(stats_op.getArg());
        stats_op.erase();
      });
    }
    
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.inc"
    
    void PrepareQuantizeDRQPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. security/pkg/server/ca/server.go

    	certSigner := crMetadata[security.CertSigner].GetStringValue()
    	_, _, certChainBytes, rootCertBytes := s.ca.GetCAKeyCertBundle().GetAll()
    	certOpts := ca.CertOpts{
    		SubjectIDs: sans,
    		TTL:        time.Duration(request.ValidityDuration) * time.Second,
    		ForCA:      false,
    		CertSigner: certSigner,
    	}
    	var signErr error
    	var cert []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

            registration.add(ClasspathElementTransformFactoryForLegacy.class);
            registration.add(DefaultCachedClasspathTransformer.class);
            for (GradleModuleServices services : globalServices.getAll(GradleModuleServices.class)) {
                services.registerGradleUserHomeServices(registration);
            }
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/generic.go

    	g.podRecords.setCurrent(pods)
    
    	// Compare the old and the current pods, and generate events.
    	eventsByPodID := map[types.UID][]*PodLifecycleEvent{}
    	for pid := range g.podRecords {
    		oldPod := g.podRecords.getOld(pid)
    		pod := g.podRecords.getCurrent(pid)
    		// Get all containers in the old and the new pod.
    		allContainers := getContainersFromPods(oldPod, pod)
    		for _, container := range allContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

        static InstantiatorFactory instantiatorFactory() {
            if (instantiatorFactory == null) {
                NativeServicesTestFixture.initialize()
                def annotationHandlers = ProjectBuilderImpl.getGlobalServices().getAll(InjectAnnotationHandler.class)
                instantiatorFactory = new DefaultInstantiatorFactory(new TestCrossBuildInMemoryCacheFactory(), annotationHandlers, new OutputPropertyRoleAnnotationHandler([]))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

                [ConfigurableFileCollection, Property],
                IGNORED_METHOD_ANNOTATIONS,
                { false },
                cacheFactory
            )
            def propertyHandlers = services.getAll(PropertyAnnotationHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

                registration.add(ProjectInternal.class, project);
                parent.get(DependencyManagementServices.class).addDslServices(registration, project);
                for (GradleModuleServices services : parent.getAll(GradleModuleServices.class)) {
                    services.registerProjectServices(registration);
                }
            });
            addProvider(new WorkerSharedProjectScopeServices(project.getProjectDir()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top