Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 696 for isSelect (0.21 sec)

  1. operator/README.md

    ```bash
    istioctl profile dump --filename samples/pilot-k8s.yaml
    ```
    
    #### Select a specific configuration profile
    
    The simplest customization is to select a profile different to `default` e.g. `minimal`. See [manifests/profiles/minimal.yaml](../manifests/profiles/minimal.yaml):
    
    ```yaml
    # minimal-install.yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb.py

    		# top-most frame, so select frame 0 first.
    		gdb.execute('select-frame 0')
    		gdb.parse_and_eval('$sp = {0}'.format(str(sp)))
    		gdb.parse_and_eval('$pc = {0}'.format(str(pc)))
    		try:
    			gdb.execute(cmd)
    		finally:
    			# In GDB, assignments to sp must be done from the
    			# top-most frame, so select frame 0 first.
    			gdb.execute('select-frame 0')
    			gdb.parse_and_eval('$pc = $save_pc')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    		// NOTE: b/c there is no priority selection in golang
    		// it is possible for this to race, meaning we could
    		// trigger t.C and stopCh, and t.C select falls through.
    		// In order to mitigate we re-check stopCh at the beginning
    		// of every loop to prevent extra executions of f().
    		select {
    		case <-stopCh:
    			if !t.Stop() {
    				<-t.C()
    			}
    			return
    		case <-t.C():
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    To focus on the information about one dependency configuration, provide the optional parameter `--configuration`.
    Just like <<command_line_interface#sec:name_abbreviation, project and task names>>, Gradle accepts abbreviated names to select a dependency configuration.
    For example, you can specify `tRC` instead of `testRuntimeClasspath` if the pattern matches to a single dependency configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    			"starting root cert rotator.", rotator.backOffTime.String())
    		select {
    		case <-time.After(rotator.backOffTime):
    			rootCertRotatorLog.Infof("Jitter complete, start rotator.")
    		case <-stopCh:
    			rootCertRotatorLog.Info("Received stop signal, so stop the root cert rotator.")
    			return
    		}
    	}
    	ticker := time.NewTicker(rotator.config.CheckInterval)
    	for {
    		select {
    		case <-ticker.C:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	var resultChanWG sync.WaitGroup
    	resultChanWG.Add(1)
    	go wc.processEvent(&resultChanWG)
    
    	select {
    	case err := <-wc.errChan:
    		if isCancelError(err) {
    			break
    		}
    		errResult := transformErrorToEvent(err)
    		if errResult != nil {
    			// error result is guaranteed to be received by user before closing ResultChan.
    			select {
    			case wc.resultChan <- *errResult:
    			case <-wc.ctx.Done(): // user has given up all results
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    	// Key is the generator type - will match the Generator metadata to set the per-connection
    	// default generator, or the combination of Generator metadata and TypeUrl to select a
    	// different generator for a type.
    	// Normal istio clients use the default generator - will not be impacted by this.
    	Generators map[string]model.XdsResourceGenerator
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. internal/logger/target/http/http.go

    		currentGlobalBuffer, ok := logChBuffers[name]
    		logChLock.Unlock()
    		if !ok {
    			return
    		}
    
    		for _, v := range entries {
    			select {
    			case currentGlobalBuffer <- v:
    			default:
    			}
    		}
    
    		if mainWorker {
    		drain:
    			for {
    				select {
    				case v, ok := <-h.logCh:
    					if !ok {
    						break drain
    					}
    
    					currentGlobalBuffer <- v
    				default:
    					break drain
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. migrator/migrator.go

    // Query in gorm.ViewOption is a [subquery]
    //
    //	// CREATE VIEW `user_view` AS SELECT * FROM `users` WHERE age > 20
    //	q := DB.Model(&User{}).Where("age > ?", 20)
    //	DB.Debug().Migrator().CreateView("user_view", gorm.ViewOption{Query: q})
    //
    //	// CREATE OR REPLACE VIEW `users_view` AS SELECT * FROM `users` WITH CHECK OPTION
    //	q := DB.Model(&User{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Here, we _manipulate the requested versions_ in order to select a different version when we find a rejected one.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top