Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 140 for deselect (0.1 sec)

  1. manifests/charts/README.md

    by a different role than the prod version.
    
    The intended users of this repo are users running Istio in production who want to select, tune
    and understand each binary that gets deployed, and select which combination to use.
    
    Note: each component can be installed in parallel with an existing Istio 1.0 or 1.1 installation in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/gateway/gateway.go

    	})
    }
    
    func (*IngressGatewayPortAnalyzer) analyzeGateway(r *resource.Instance, c analysis.Context) {
    	gw := r.Message.(*v1alpha3.Gateway)
    
    	// Typically there will be a single istio-ingressgateway service, which will select
    	// the same ingress gateway pod workload as the Gateway resource.  If there are multiple
    	// Kubernetes services, and they offer different TCP port combinations, this validator will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pilot/pkg/server/instance.go

    func (i *instance) Start(stop <-chan struct{}) error {
    	shutdown := func() {
    		close(i.done)
    	}
    
    	// First, drain all startup tasks and immediately return if any fail.
    	for startupDone := false; !startupDone; {
    		select {
    		case next := <-i.components:
    			t0 := time.Now()
    			if err := next.task(stop); err != nil {
    				// Startup error: terminate and return the error.
    				shutdown()
    				return err
    			}
    			runtime := time.Since(t0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. pkg/controlplane/reconcilers/reconcilers.go

    	// called more than once.
    	Destroy()
    }
    
    // Type the reconciler type
    type Type string
    
    const (
    	// MasterCountReconcilerType will select the original reconciler
    	MasterCountReconcilerType Type = "master-count"
    	// LeaseEndpointReconcilerType will select a storage based reconciler
    	LeaseEndpointReconcilerType Type = "lease"
    	// NoneEndpointReconcilerType will turn off the endpoint reconciler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 13:49:31 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java

                return factory.newXPath();
            } catch (final Exception e) {
                throw new CrawlerSystemException("Failed to create XPath instance.", e);
            }
        }
    
        /**
         *  Use an XPath string to select a nodelist.
         *  XPath namespace prefixes are resolved from the contextNode.
         *
         *  @param contextNode The node to start searching from.
         *  @param expression A valid XPath string.
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. internal/bpool/bpool.go

    		bp.Put(buf[:bp.w])
    	}
    }
    
    // Get gets a []byte from the BytePool, or creates a new one if none are
    // available in the pool.
    func (bp *BytePoolCap) Get() (b []byte) {
    	if bp == nil {
    		return nil
    	}
    	select {
    	case b = <-bp.c:
    		// reuse existing buffer
    	default:
    		// create new aligned buffer
    		if bp.wcap > 0 {
    			b = reedsolomon.AllocAligned(1, bp.wcap)[0][:bp.w]
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/net/fd_unix.go

    	// so no concurrent operations are possible.
    	switch err := connectFunc(fd.pfd.Sysfd, ra); err {
    	case syscall.EINPROGRESS, syscall.EALREADY, syscall.EINTR:
    	case nil, syscall.EISCONN:
    		select {
    		case <-ctx.Done():
    			return nil, mapErr(ctx.Err())
    		default:
    		}
    		if err := fd.pfd.Init(fd.net, true); err != nil {
    			return nil, err
    		}
    		runtime.KeepAlive(fd)
    		return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/covdata/merge.go

    	fmt.Fprintf(os.Stderr, "  \tinto output dir outdir\n")
    	Exit(2)
    }
    
    func (m *mstate) Setup() {
    	if *indirsflag == "" {
    		m.Usage("select input directories with '-i' option")
    	}
    	if *outdirflag == "" {
    		m.Usage("select output directory with '-o' option")
    	}
    	m.mm.SetModeMergePolicy(cmerge.ModeMergeRelaxed)
    }
    
    func (m *mstate) BeginPod(p pods.Pod) {
    	m.mm.beginPod()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

    public interface DependencyMetadata {
        /**
         * Returns the component selector for this dependency.
         *
         * @return Component selector
         */
        ComponentSelector getSelector();
    
        /**
         * Select the matching variants for this dependency from the given target component.
         *
         * @implSpec An instance of {@link ResolutionFailureHandler} is supplied to this method, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelectorTest.groovy

            }
    
            given:
            modelRegistry.realize(_, NativeToolChainRegistryInternal) >> registry
            machineArchitecture.name >> architecture
    
            when:
            def result = selector.select(CppPlatform, requestPlatform)
    
            then:
            result.toolChain == toolChain
            result.targetPlatform instanceof CppPlatform
            result.targetPlatform.targetMachine.operatingSystemFamily == osFamily
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top