Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 324 for 20something (0.38 sec)

  1. src/context/context.go

    	// elapses.
    	//
    	// Done is provided for use in select statements:
    	//
    	//  // Stream generates values with DoSomething and sends them to out
    	//  // until DoSomething returns an error or ctx.Done is closed.
    	//  func Stream(ctx context.Context, out chan<- Value) error {
    	//  	for {
    	//  		v, err := DoSomething(ctx)
    	//  		if err != nil {
    	//  			return err
    	//  		}
    	//  		select {
    	//  		case <-ctx.Done():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[invalid_use_of_cacheable_annotation]]
    == Invalid use of cacheable annotation
    
    This error indicates that you have annotated a type with `@CacheableTransform` on something that is not an artifact transform, or `@CacheableTask` on something which is not a `Task`.
    
    The solution is to remove the annotation.
    
    For tasks, the annotation to use is `@CacheableTask`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. docs/vi/docs/python-types.md

    `Optional[Something]` là một cách viết ngắn gọn của `Union[Something, None]`, chúng là tương đương nhau.
    
    Điều này cũng có nghĩa là trong Python 3.10, bạn có thể sử dụng `Something | None`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/python_types/tutorial009_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. docs/en/docs/alternatives.md

    But at some point, there was no other option than creating something that provided all these features, taking the best ideas from previous tools, and combining them in the best way possible, using language features that weren't even available before (Python 3.6+ type hints).
    
    ## Previous tools
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/edit.go

    		if !modfile.GoVersionRE.MatchString(*editGo) {
    			base.Fatalf(`go work: invalid -go option; expecting something like "-go %s"`, gover.Local())
    		}
    	}
    	if *editToolchain != "" && *editToolchain != "none" {
    		if !modfile.ToolchainRE.MatchString(*editToolchain) {
    			base.Fatalf(`go work: invalid -toolchain option; expecting something like "-toolchain go%s"`, gover.Local())
    		}
    	}
    
    	anyFlags := *editGo != "" ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      // Ensure that it compile
      ASSERT_TRUE(compilation_result.ok());
      // Assert that the tensor list operation is lowered to something.
      ASSERT_THAT(compilation_result,
                  Not(ComputationProtoContains("%.*= \"tf.TensorListSetItem")));
      // Assert that the tensor list operation is lowered to something that doesn't
      // get stuck on a broken dynamic update slice.
      ASSERT_THAT(compilation_result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. src/runtime/mgclimit.go

    func (l *gcCPULimiterState) startGCTransition(enableGC bool, now int64) {
    	if !l.tryLock() {
    		// This must happen during a STW, so we can't fail to acquire the lock.
    		// If we did, something went wrong. Throw.
    		throw("failed to acquire lock to start a GC transition")
    	}
    	if l.gcEnabled == enableGC {
    		throw("transitioning GC to the same state as before?")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

            }
        }
    
        def "reports failed project configuration progress events"() {
            given:
            buildFile << """
                throw new GradleException("something went horribly wrong")
            """
    
            when:
            runBuild("tasks")
    
            then:
            thrown(BuildException)
            with(events.operation("Configure project :")) {
                failed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

            // This test is checking only for successful (single) matches. If we matched multiple configurations
            // in the first round, something is wrong here. Fail before attempting the second round of variant matching.
            assert configurationMatches.size() == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. docs/de/docs/python-types.md

    `Optional[Something]` ist tatsächlich eine Abkürzung für `Union[Something, None]`, diese beiden sind äquivalent.
    
    Das bedeutet auch, dass Sie in Python 3.10 `Something | None` verwenden können:
    
    === "Python 3.10+"
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/python_types/tutorial009_py310.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top