Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 157 for Element (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            1 * resolutionStrategy.copy() >> resolutionStrategyCopy
    
            and:
            def copiedConfiguration = configuration.copy(new Spec<Dependency>() {
                boolean isSatisfiedBy(Dependency element) {
                    return !element.getGroup().equals("group3")
                }
            })
    
            then:
            checkCopiedConfiguration(configuration, copiedConfiguration, resolutionStrategyCopy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            Version.BASE,
                            "parent.artifactId",
                            null,
                            "must be changed"
                                    + ", the parent element cannot have the same groupId:artifactId as the project.",
                            parent);
                }
    
                if (equals("LATEST", parent.getVersion()) || equals("RELEASE", parent.getVersion())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

     func.return %arg0 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Test the pass reports failure on unknown size.
    
    func.func @main(%arg0: tensor<i32>) -> () {
      // expected-error @+1 {{unknown max element count}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  4. src/go/build/build.go

    	// BuildTags is not set for the Default build Context.
    	// In addition to the BuildTags, ToolTags, and ReleaseTags, build constraints
    	// consider the values of GOARCH and GOOS as satisfied tags.
    	// The last element in ReleaseTags is assumed to be the current release.
    	BuildTags   []string
    	ToolTags    []string
    	ReleaseTags []string
    
    	// The install suffix specifies a suffix to use in the name of the installation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			continue
    		}
    		path := fieldpath.Path{}
    		splitReplicasPath := strings.Split(strings.TrimPrefix(subresources.Scale.SpecReplicasPath, "."), ".")
    		for _, element := range splitReplicasPath {
    			s := element
    			path = append(path, fieldpath.PathElement{FieldName: &s})
    		}
    		replicasPathInCustomResource[schema.GroupVersion{Group: crd.Spec.Group, Version: v.Name}.String()] = path
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///   * `statuses` is either null or an array of `num_files` non-null elements
      ///     of type `TF_Status*`.
      ///
      /// If `statuses` is not null, plugins must fill each element with detailed
      /// status for each file, as if calling `path_exists` on each one. Core
      /// TensorFlow initializes the `statuses` array and plugins must use
      /// `TF_SetStatus` to set each element instead of directly assigning.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. src/time/format.go

    // looks like so that the Format and Parse methods can apply the same
    // transformation to a general time value.
    //
    // Here is a summary of the components of a layout string. Each element shows by
    // example the formatting of an element of the reference time. Only these values
    // are recognized. Text in the layout string that is not recognized as part of
    // the reference time is echoed verbatim during Format and expected to appear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    	// analyze case
    	var idents []*ast.Ident
    	if typ != nil {
    		// IdentifierList Type
    		idents = p.makeIdentList(list)
    	} else {
    		// ["*"] TypeName (AnonymousField)
    		typ = list[0] // we always have at least one element
    		p.resolve(typ)
    		if n := len(list); n > 1 || !isTypeName(deref(typ)) {
    			pos := typ.Pos()
    			p.errorExpected(pos, "anonymous field")
    			typ = &ast.BadExpr{pos, list[n-1].End()}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    	// argument that has the same module path as, and a lower version than,
    	// the last element of the Path slice.
    	Constraint module.Version
    
    	// If Constraint is unset, Err is an error encountered when loading the
    	// requirements of the last element in Path.
    	Err error
    }
    
    // UnwrapModuleError returns c.Err, but unwraps it if it is a module.ModuleError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.listMap.filter(m, has(m.v2) && m.v2 == 'z').map(m, m.v2).size() == 1": 39,
    				// - without has checks:
    
    				// all() and exists() macros ignore errors from predicates so long as the condition holds for at least one element
    				"self.listMap.exists(m, m.v2 == 'z')": 24,
    				"!self.listMap.all(m, m.v2 != 'z')":   22,
    			},
    		},
    		{name: "list access",
    			obj: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top