Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 316 for someString (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            given:
            manager.addListener(Stub(StatefulTestListener))
            def broadcaster = manager.getBroadcaster(StatefulTestListener)
            manager.addListener(Stub(StatefulTestListener))
            broadcaster.something("12")
    
            when:
            manager.addListener(Stub(StatefulTestListener))
    
            then:
            def e = thrown(IllegalStateException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	if e.Kind() != reflect.Struct {
    		return validationErrors
    	}
    	for i := 0; i < e.NumField(); i++ {
    		// Corner case of a slice of something, if something is defined type, then process it recursively.
    		if e.Field(i).Kind() == reflect.Slice {
    			validationErrors = append(validationErrors, processSlice(e.Field(i), failOnMissingValidation, values, iopls)...)
    			continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

                return Value.of(emptyCollection());
            }
    
            @Override
            public CollectionSupplier<T, C> plus(Collector<T> collector) {
                // empty + something = something
                return new CollectingSupplier(collector);
            }
    
            @Override
            public CollectionSupplier<T, C> absentIgnoring() {
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top