Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for 2_spec (0.19 sec)

  1. tensorflow/c/experimental/ops/gen/common/controller.cc

    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/common/path_config.h"
    #include "tensorflow/c/experimental/ops/gen/common/source_code.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    #include "tensorflow/core/framework/api_def.pb.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_gen_lib.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <!--{
    	"Title": "The Go Programming Language Specification",
    	"Subtitle": "Language version go1.23 (June 4, 2024)",
    	"Path": "/ref/spec"
    }-->
    
    <h2 id="Introduction">Introduction</h2>
    
    <p>
    This is the reference manual for the Go programming language.
    The pre-Go1.18 version, without generics, can be found
    <a href="/doc/go1.17_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactory.java

            this.classLoaderFactory = classLoaderFactory;
        }
    
        @Override
        public ClassLoader getClassLoaderFor(ClassLoaderSpec spec, List<? extends ClassLoader> parents) {
            if (spec instanceof VisitableURLClassLoader.Spec) {
                VisitableURLClassLoader.Spec clSpec = (VisitableURLClassLoader.Spec) spec;
                if (parents.size() != 1) {
                    throw new IllegalStateException("Expected exactly one parent ClassLoader");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                roots.add(toSpec(sourceTree))
            }
        }
    
        private
        fun fromSpec(spec: FileTreeSpec): FileTreeInternal = when (spec) {
            is AdaptedFileTreeSpec -> fileCollectionFactory.treeOf(spec.tree)
            is FilteredFileTreeSpec -> spec.tree.matching(spec.patterns)
            is FilteredMinimalFileTreeSpec -> fromSpec(spec.tree).matching(spec.patterns)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

            this.lowestTestedVersion = GradleVersion.version(lowestTestedVersion);
        }
    
        public Spec<GradleVersion> toSpec(String constraint) {
            String trimmed = constraint.trim();
            if (trimmed.equals("current")) {
                return new Spec<GradleVersion>() {
                    @Override
                    public boolean isSatisfiedBy(GradleVersion element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/logging.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    OpView::OpView(OpSpec op)
        : op_(op),
          input_args_(op_.Inputs().begin(), op_.Inputs().end()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ModelClassLoaderFactory.java

                return new VisitableURLClassLoader(clSpec.getName(), parent, clSpec.getClasspath());
            }
            if (spec instanceof CachingClassLoader.Spec) {
                return new CachingClassLoader(parent);
            }
            if (spec instanceof FilteringClassLoader.Spec) {
                FilteringClassLoader.Spec clSpec = (FilteringClassLoader.Spec) spec;
                return new FilteringClassLoader(parent, clSpec);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crd/conversion_test.go

    	}
    	if _, _, err := ParseInputs("apiVersion: networking.istio.io/v1alpha3\nkind: VirtualService\nspec:\n  destination: x"); err == nil {
    		t.Error("ParseInput(bad spec) => got no error")
    	}
    	if _, _, err := ParseInputs("apiVersion: networking.istio.io/v1alpha3\nkind: VirtualService\nspec:\n  destination:\n    service:"); err == nil {
    		t.Error("ParseInput(invalid spec) => got no error")
    	}
    
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/go/build/read.go

    	}
    
    	hasEmbed := false
    	for _, decl := range info.parsed.Decls {
    		d, ok := decl.(*ast.GenDecl)
    		if !ok {
    			continue
    		}
    		for _, dspec := range d.Specs {
    			spec, ok := dspec.(*ast.ImportSpec)
    			if !ok {
    				continue
    			}
    			quoted := spec.Path.Value
    			path, err := strconv.Unquote(quoted)
    			if err != nil {
    				return fmt.Errorf("parser returned invalid quoted string: <%s>", quoted)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    		spec := u.Object["spec"].(map[string]any)
    		spec["color"] = spec["hue"]
    		delete(spec, "hue")
    	} else if currentAPIVersion == "tests.example.com/v1" && desiredAPIVersion == "tests.example.com/v1beta1" {
    		spec := u.Object["spec"].(map[string]any)
    		spec["hue"] = spec["color"]
    		delete(spec, "color")
    	} else if currentAPIVersion != desiredAPIVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top