Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 297 for gomod (0.21 sec)

  1. docs/en/docs/python-types.md

    The `name` parameter is **still required** (not *optional*) because it doesn't have a default value. Still, `name` accepts `None` as the value:
    
    ```Python
    say_hi(name=None)  # This works, None is valid 🎉
    ```
    
    The good news is, once you are on Python 3.10 you won't have to worry about that, as you will be able to simply use `|` to define unions of types:
    
    ```Python hl_lines="1  4"
    {!../../../docs_src/python_types/tutorial009c_py310.py!}
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    This is the case for most of the web applications.
    
    Many, many users, but your server is waiting 🕙 for their not-so-good connection to send their requests.
    
    And then waiting 🕙 again for the responses to come back.
    
    This "waiting" 🕙 is measured in microseconds, but still, summing it all, it's a lot of waiting in the end.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			},
    			"duplicate env", "",
    		},
    		{
    			"target-ref-good",
    			&extensions.WasmPlugin{
    				Url: "http://test.com/test",
    				TargetRef: &api.PolicyTargetReference{
    					Group: gvk.KubernetesGateway.Group,
    					Kind:  gvk.KubernetesGateway.Kind,
    					Name:  "foo",
    				},
    			},
    			"", "",
    		},
    		{
    			"target-ref-good-service",
    			&extensions.WasmPlugin{
    				Url: "http://test.com/test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/controller/bootstrap/bootstrapsigner.go

    			klog.FromContext(ctx).V(1).Info("Duplicate bootstrap tokens found for id, ignoring on the duplicate secret", "tokenID", tokenID, "ignoredSecret", klog.KObj(secret))
    			continue
    		}
    
    		// This secret looks good, add it to the list.
    		ret[tokenID] = tokenSecret
    	}
    
    	return ret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
            //but should be good enough. If this test fails for you and you did not intend to add new jars to the distribution
            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            assertThat(this.fileNames, hasItem(equalTo(filename)));
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasFailures(int count) {
            problemsNotChecked.clear(); // this is a good enough check for now
            assertThat(this.problems.size(), equalTo(count));
            if (count == 1) {
                assertThat(summary, equalTo("Build failed with an exception."));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation_test.go

    	scenarios := map[string]struct {
    		config   *config.KubeSchedulerConfiguration
    		wantErrs field.ErrorList
    	}{
    		"good": {
    			config: validConfig,
    		},
    		"bad-parallelism-invalid-value": {
    			config: invalidParallelismValue,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/inl_test.go

    			// that the returned closure can be inlined into the caller of OnceFunc.
    			"OnceFunc",
    			"OnceFunc.func2", // The returned closure.
    			// TODO(austin): It would be good to check OnceValue and OnceValues,
    			// too, but currently they aren't reported because they have type
    			// parameters and aren't instantiated in sync.
    		},
    		"sync/atomic": {
    			// (*Bool).CompareAndSwap handled below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/sync/mutex.go

    	// does not own the mutex and competes with new arriving goroutines over
    	// the ownership. New arriving goroutines have an advantage -- they are
    	// already running on CPU and there can be lots of them, so a woken up
    	// waiter has good chances of losing. In such case it is queued at front
    	// of the wait queue. If a waiter fails to acquire the mutex for more than 1ms,
    	// it switches mutex to the starvation mode.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
            int maxTimeout = 2 * 60 * 1000;
            if (daemonParameters.getIdleTimeout() > maxTimeout) {
                daemonParameters.setIdleTimeout(maxTimeout);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top