Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 228 for Egrave (0.39 sec)

  1. src/testing/helper_test.go

    	// of the log, five lines of "parallel" logging,
    	// and a final "FAIL" line at the end of the test.
    	const wantLines = 7
    
    	if len(lines) != wantLines {
    		t.Fatalf("parallelTestHelper gave %d lines of output; want %d", len(lines), wantLines)
    	}
    	want := "helperfuncs_test.go:24: parallel"
    	if got := strings.TrimSpace(lines[1]); got != want {
    		t.Errorf("got second output line %q; want %q", got, want)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. docs/fr/docs/async.md

    ## Détails techniques
    
    Les versions modernes de Python supportent le **code asynchrone** grâce aux **"coroutines"** avec les syntaxes **`async` et `await`**.
    
    Analysons les différentes parties de cette phrase dans les sections suivantes :
    
    * **Code asynchrone**
    * **`async` et `await`**
    * **Coroutines**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    		return
    	}
    }
    
    // calculateEffectiveGracePeriod sets the initial grace period for a newly terminating pod or allows a
    // shorter grace period to be provided, returning the desired value.
    func calculateEffectiveGracePeriod(status *podSyncStatus, pod *v1.Pod, options *KillPodOptions) (int64, bool) {
    	// enforce the restriction that a grace period can only decrease and track whatever our value is,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

              And mentioned me to him:
            She gave me a good character,
              But said I could not swim.
    
            He sent them word I had not gone
              (We know it to be true):
            If she should push the matter on,
              What would become of you?
    
            I gave her one, they gave him two,
              You gave us three or more;
            They all returned from him to you,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if probe != nil && probe.TerminationGracePeriodSeconds != nil {
    		if *probe.TerminationGracePeriodSeconds > *pod.Spec.TerminationGracePeriodSeconds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    		syncPodRecords := processed[uid]
    		var match bool
    		grace := int64(30)
    		for _, possible := range [][]syncPodRecord{
    			{{name: string(uid), updateType: kubetypes.SyncPodKill, gracePeriod: &grace}, {name: string(uid), terminated: true}},
    			{{name: string(uid), updateType: kubetypes.SyncPodCreate}, {name: string(uid), updateType: kubetypes.SyncPodKill, gracePeriod: &grace}, {name: string(uid), terminated: true}},
    		} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/query-params.md

    !!! note
        **FastAPI** saura que `q` est optionnel grâce au `=None`.
    
        Le `Optional` dans `Optional[str]` n'est pas utilisé par **FastAPI** (**FastAPI** n'en utilisera que la partie `str`), mais il servira tout de même à votre éditeur de texte pour détecter des erreurs dans votre code.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. samples/addons/README.md

    The deployments here are meant to quickly get up and running, and are optimized for this case. As a result,
    they may not be suitable for production. See below for more info on integrating a production grade version of each
    addon.
    
    ## Getting started
    
    To quickly deploy all addons:
    
    ```shell script
    kubectl apply -f samples/addons
    ```
    
    Alternatively, you can deploy individual addons:
    
    ```shell script
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

                groovyCompile.getJavaLauncher().convention(getJavaLauncher(project));
    
                groovyCompile.getGroovyOptions().getDisabledGlobalASTTransformations().convention(Sets.newHashSet("groovy.grape.GrabAnnotationTransformation"));
            });
            JvmPluginsHelper.configureOutputDirectoryForSourceSet(sourceSet, groovySource, project, compileTask, compileTask.map(GroovyCompile::getOptions));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceslice_test.go

    		},
    		"creation-timestamp": {
    			slice: func() *resource.ResourceSlice {
    				slice := testResourceSlice(goodName, goodName, driverName)
    				slice.CreationTimestamp = now
    				return slice
    			}(),
    		},
    		"deletion-grace-period-seconds": {
    			slice: func() *resource.ResourceSlice {
    				slice := testResourceSlice(goodName, goodName, driverName)
    				slice.DeletionGracePeriodSeconds = ptr.To[int64](10)
    				return slice
    			}(),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top