Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 91 for getAlg (2.96 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/WorkerAction.java

                            @Override
                            public Object call() throws Exception {
                                return implementation.run(request.getArg());
                            }
                        });
                    } catch (Throwable failure) {
                        if (failure instanceof NoClassDefFoundError) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/test/mock/caserver.go

    	if err != nil {
    		caServerLog.Errorf("failed to parse CSR: %+v", err)
    		return nil, caerror.NewError(caerror.CSRError, err)
    	}
    	signingCert, signingKey, _, _ := s.KeyCertBundle.GetAll()
    	certBytes, err := util.GenCertFromCSR(csr, signingCert, csr.PublicKey, *signingKey, subjectIDs, s.certLifetime, forCA)
    	if err != nil {
    		caServerLog.Errorf("failed to generate cert from CSR: %+v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceLocator.java

        }
    
        @Override
        public <T> T get(Class<T> serviceType) throws UnknownServiceException {
            return getFactory(serviceType).create();
        }
    
        @Override
        public <T> List<T> getAll(Class<T> serviceType) throws UnknownServiceException {
            List<ServiceFactory<T>> factories = findFactoriesForServiceType(serviceType);
            ArrayList<T> services = new ArrayList<T>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/store.go

    	instancesByHostAndPort sets.Set[hostPort]
    }
    
    func (s *serviceInstancesStore) getByIP(ip string) []*model.ServiceInstance {
    	return s.ip2instance[ip]
    }
    
    func (s *serviceInstancesStore) getAll() []*model.ServiceInstance {
    	all := make([]*model.ServiceInstance, 0, countSliceValue(s.ip2instance))
    	for _, instances := range s.ip2instance {
    		all = append(all, instances...)
    	}
    	return all
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/namespace.go

    	}
    	if !t.Settings().Skip(echo.Sotw) {
    		n.Sotw = match.ServiceName(echo.NamespacedName{Name: SotwSvc, Namespace: ns}).GetMatches(echos)
    	}
    
    	namespaces, err := namespace.GetAll(t)
    	if err != nil {
    		return fmt.Errorf("failed retrieving list of namespaces: %v", err)
    	}
    
    	// Restrict egress from this namespace to only those endpoints in the same Echos.
    	cfg := t.ConfigIstio().New()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

                  .getOutputDimensions()
                  .getDefiningOp<shape::ShapeOfOp>();
          // Check if the shape come from the original conv op.
          if (!shape_of_op ||
              shape_of_op.getArg().getDefiningOp<mhlo::ConvolutionOp>() !=
                  conv_op) {
            return failure();
          }
          Value new_shape_of = rewriter.create<shape::ShapeOfOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/runtime/os_dragonfly.go

    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    	getg().m.procid = uint64(lwp_gettid())
    	minitSignals()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/cds.go

    	// 3. Once we support gRPC servers, we have no good way to detect if a server is implemented with xds.NewGrpcServer and will actually support our config
    	// For these reasons, support only explicit tls configuration.
    	switch policy.GetTls().GetMode() {
    	case networking.ClientTLSSettings_DISABLE:
    		// nothing to do
    	case networking.ClientTLSSettings_SIMPLE:
    		// TODO support this
    	case networking.ClientTLSSettings_MUTUAL:
    		// TODO support this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top