Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 123 for someString (0.24 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - plugin dependency metadata missing
    - plugin dependency metadata retrieval problem
    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    - plugin execution error due to something that is not expected to go wrong (the compiler executable missing)
    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. docs/en/docs/python-types.md

    `Optional[Something]` is actually a shortcut for `Union[Something, None]`, they are equivalent.
    
    This also means that in Python 3.10, you can use `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: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    func TestStartSpec(t *testing.T) {
    	podStatus := &kubecontainer.PodStatus{
    		ContainerStatuses: []*kubecontainer.Status{
    			{
    				ID: kubecontainer.ContainerID{
    					Type: "docker",
    					ID:   "docker-something-something",
    				},
    				Name: "target",
    			},
    		},
    	}
    
    	for _, tc := range []struct {
    		name string
    		spec *startSpec
    		want *kubecontainer.ContainerID
    	}{
    		{
    			"Regular Container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                task test(type: GroovyTask)
                assert test.prop == '[default]'
                test {
                    description 'does something'
                    prop 'value'
                }
                assert test.description == 'does something'
                assert test.prop == 'value'
                test.doStuff {
                    prop = 'new value'
                }
                assert test.prop == 'new value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K 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. 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)
  8. 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)
  9. 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)
  10. src/internal/coverage/cfile/emit.go

    	copy(finalHash[:], fh)
    	finalHashComputed = true
    	finalMetaLen = tlen
    
    	return ml, nil
    }
    
    // emitMetaDataToDirectory emits the meta-data output file to the specified
    // directory, returning an error if something went wrong.
    func emitMetaDataToDirectory(outdir string, ml []rtcov.CovMetaBlob) error {
    	ml, err := prepareForMetaEmit()
    	if err != nil {
    		return err
    	}
    	if len(ml) == 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top