Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,073 for 2_spec (0.23 sec)

  1. pilot/pkg/config/kube/gateway/controller_test.go

    			GroupVersionKind: gvk.GatewayClass,
    			Name:             "gwclass",
    			Namespace:        "ns1",
    		},
    		Spec: gatewayClassSpec,
    	})
    	if _, err := store.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.KubernetesGateway,
    			Name:             "gwspec",
    			Namespace:        "ns1",
    		},
    		Spec: gatewaySpec,
    	}); err != nil {
    		t.Fatal(err)
    	}
    	store.Create(config.Config{
    		Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractApiGroovyCompilerIntegrationSpec/canUseCustomFileExtensions/src/test/groovy/Person.spec

    Tom Tresansky <******@****.***> 1692994246 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 58 bytes
    - Viewed (0)
  3. pkg/volume/local/local_test.go

    			}
    
    			if rec.Spec.PersistentVolume.Spec.VolumeMode == nil {
    				t.Fatalf("Volume mode has not been set.")
    			}
    
    			if *rec.Spec.PersistentVolume.Spec.VolumeMode != v1.PersistentVolumeFilesystem {
    				t.Errorf("Unexpected volume mode %q", *rec.Spec.PersistentVolume.Spec.VolumeMode)
    			}
    
    			ls := pv.Spec.PersistentVolumeSource.Local
    			if ls == nil {
    				t.Fatalf("LocalVolumeSource object nil")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/specs/Spec.java

     * limitations under the License.
     */
    package org.gradle.api.specs;
    
    /**
     * Represents some predicate against objects of type T.
     *
     * @param <T> The target type for this Spec
     */
    public interface Spec<T> {
        boolean isSatisfiedBy(T element);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 830 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FilteredMinimalFileTreeTest.groovy

        def "ignores directory that is not included"() {
            def spec = Mock(Spec)
            def included = Stub(FileVisitDetails)
            def excluded = Stub(FileVisitDetails)
            def visitor = Mock(FileVisitor)
    
            when:
            tree.visit(visitor)
    
            then:
            _ * patterns.asSpec >> spec
            1 * spec.isSatisfiedBy(included) >> true
            1 * spec.isSatisfiedBy(excluded) >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    type fakeRoot struct {
    	spec *spec3.OpenAPI
    }
    
    func (f *fakeRoot) GroupVersions() ([]schema.GroupVersion, error) {
    	// Unused
    	return nil, nil
    }
    
    // GVSpec returns hard-coded OpenAPI V3 document.
    func (f *fakeRoot) GVSpec(gv schema.GroupVersion) (*spec3.OpenAPI, error) {
    	return f.spec, nil
    }
    
    func (f *fakeRoot) GVSpecAsMap(gv schema.GroupVersion) (map[string]interface{}, error) {
    	// Unused
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/PatternMatchTestClassProcessor.java

        private final TestClassProcessor delegate;
    
        public PatternMatchTestClassProcessor(DefaultTestFilter testFilter, TestClassProcessor delegate) {
            this.testClassSelectionMatcher = new TestSelectionMatcher(testFilter.toSpec());
            this.delegate = delegate;
        }
    
        @Override
        public void startProcessing(TestResultProcessor resultProcessor) {
            delegate.startProcessing(resultProcessor);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/common/controller.h

      virtual ~Controller();
      const void WriteFile(const string& file_path, const SourceCode& code) const;
      const std::vector<OpSpec>& GetModelOps() const;
    
     private:
      void InitializeOpApi();
      void BuildModel();
    
      // Data model: Ops to generate
      std::vector<OpSpec> operators_;
    
      // Configuration
      Env* env_;
      PathConfig path_config_;
    
      // Initialized TensorFlow Op/API definitions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

    // check the data type.
    typedef std::pair<string, DataType> IOSpec;
    
    const char* kFeedStackToString = "File \"feed.cc\", line 10, in alpha";
    const char* kNegStackToString = "File \"neg.cc\", line 15, in beta";
    
    std::vector<IOSpec> M(const std::initializer_list<string>& names) {
      std::vector<IOSpec> v;
      for (const string& name : names) {
        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/views/op_view.h

    #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/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpView {
     public:
      explicit OpView(OpSpec op);
    
      const std::vector<ArgView> &Inputs() const;
      const std::vector<ArgView> &Outputs() const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top