Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 733 for isSelect (0.34 sec)

  1. cmd/batch-expire.go

    			toDelCopy := make([]ObjectToDelete, len(toDel))
    			for attempts := 1; attempts <= retryAttempts; attempts++ {
    				select {
    				case <-ctx.Done():
    					return
    				default:
    				}
    
    				stopFn := globalBatchJobsMetrics.trace(batchJobMetricExpire, ri.JobID, attempts)
    				// Copying toDel to select from objects whose
    				// deletion failed
    				copy(toDelCopy, toDel)
    				var failed int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    == Run the init task
    
    From inside the new project directory, run the `init` task using the following command in a terminal: `gradle init`.
    When prompted, select the `${componentTypeIndex.raw}: ${componentType.raw}` project type and `${languageIndex.raw}: ${language.raw}` as implementation language.
    Afterwards, select `2: Add library projects`.
    Next you can choose the DSL for writing buildscripts -  `1  : Groovy` or `2: Kotlin`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. tests/create_test.go

    	user := User{Name: "jinzhu"}
    
    	DB.Create(&user)
    
    	subQuery := DB.Table("users").Where("name=?", user.Name).Select("id")
    
    	result := DB.Session(&gorm.Session{DryRun: true}).Model(&Pet{}).Create([]map[string]interface{}{
    		{
    			"name":    "cat",
    			"user_id": gorm.Expr("(?)", DB.Table("(?) as tmp", subQuery).Select("@uid:=id")),
    		},
    		{
    			"name":    "dog",
    			"user_id": gorm.Expr("@uid"),
    		},
    	})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/config/file_linux_test.go

    	if err == nil {
    		t.Errorf("Expected error")
    	}
    }
    
    func TestUpdateOnNonExistentFile(t *testing.T) {
    	ch := make(chan interface{})
    	NewSourceFile("random_non_existent_path", "localhost", time.Millisecond, ch)
    	select {
    	case got := <-ch:
    		update := got.(kubetypes.PodUpdate)
    		expected := CreatePodUpdate(kubetypes.SET, kubetypes.FileSource)
    		if !apiequality.Semantic.DeepDerivative(expected, update) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top