Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,081 for initialize_ (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/include_variables_in_init_v1.py

    # CHECK-SAME: bad_consumers
    # CHECK-SAME: min_consumer
    # CHECK-SAME: producer
    
    # CHECK: "tf_saved_model.global_tensor"()
    # CHECK: "tf_saved_model.session_initializer"() <{initializers = [@[[INIT_FUNC:[a-zA-Z_0-9]+]]]}> : () -> ()
    
    # Initializer function. This should contain the initialization sequence for the
    # variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java

            protected Class<T> cls;
    
            protected Consumer<T> initializer;
    
            protected StandardCrawlerContainer container;
    
            private T instance;
    
            protected ComponentDef(final Class<T> cls, final Consumer<T> initializer, final StandardCrawlerContainer container) {
                this.cls = cls;
                this.initializer = initializer;
                this.container = container;
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. cmd/auth-handler_test.go

    	req := mustNewRequest(method, urlStr, contentLength, body, t)
    	cred := globalActiveCred
    	if err := signRequestV4(req, cred.AccessKey, cred.SecretKey); err != nil {
    		t.Fatalf("Unable to initialized new signed http request %s", err)
    	}
    	return req
    }
    
    // This is similar to mustNewRequest but additionally the request
    // is signed with AWS Signature V2, fails if not able to do so.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/ops.cc

        }
      }
      return inputs;
    }
    
    Input::Initializer::Initializer(
        const std::initializer_list<Input::Initializer>& v) {
      if (v.size() < 1) {
        // Empty initializer list defaults to float tensor with shape (0,)
        tensor = Tensor(DT_FLOAT, TensorShape{0});
        return;
      }
      auto const& first = *v.begin();
      // Check to make sure that the constituent Initializers are all the same
      // type and same shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. plugin/pkg/admission/podtolerationrestriction/admission.go

    }
    
    // SetExternalKubeInformerFactory initializes the Informer Factory
    func (p *Plugin) SetExternalKubeInformerFactory(f informers.SharedInformerFactory) {
    	namespaceInformer := f.Core().V1().Namespaces()
    	p.namespaceLister = namespaceInformer.Lister()
    	p.SetReadyFunc(namespaceInformer.Informer().HasSynced)
    
    }
    
    // ValidateInitialization checks the object is properly initialized
    func (p *Plugin) ValidateInitialization() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  6. pkg/proxy/node_test.go

    			name: "both empty",
    		},
    		{
    			name:            "initialized correctly",
    			newNodePodCIDRs: []string{"192.168.1.0/24", "fd00:1:2:3::/64"},
    		},
    		{
    			name:            "already initialized and same node",
    			oldNodePodCIDRs: []string{"10.0.0.0/24", "fd00:3:2:1::/64"},
    			newNodePodCIDRs: []string{"10.0.0.0/24", "fd00:3:2:1::/64"},
    		},
    		{
    			name:            "already initialized and different node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 10 16:50:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

    // Tests a case with one ConstOp and a tf_saved_model.session_initializer with an empty initializers.
    module attributes {tf_saved_model.semantics} {
    
      "tf_saved_model.session_initializer"() {initializers = []} : () -> ()
    // Check that the init function is created & added to the initializers attribute.
    // CHECK: "tf_saved_model.session_initializer"()
    // CHECK-SAME: initializers = [@init_func_restore_op]
    
    // CHECK: func.func @init_func_restore_op()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ReflectionTest.java

      }
    
      public void testInitialize() {
        assertEquals("This test can't be included twice in the same suite.", 0, classesInitialized);
    
        Reflection.initialize(A.class);
        assertEquals(1, classesInitialized);
    
        Reflection.initialize(
            A.class, // Already initialized (above)
            B.class, C.class);
        assertEquals(3, classesInitialized);
      }
    
      public void testNullPointers() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/immediate_execution_distributed_manager.h

                                          int64_t init_timeout_in_ms, int retries,
                                          bool clear_existing_contexts = false) = 0;
    
      // Initializes context for the local worker and no contexts will be created
      // for remote workers. Currently this only works for resetting context.
      // TODO(b/289445025): Consider removing this when we find a proper fix.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    // base.X, so that symbol is deadcoded in plugin1.
    //
    // plugin1 is loaded first. base.init runs at that point, which
    // initialize base.stmp.
    //
    // plugin2 is then loaded. base.init already ran, so it doesn't run
    // again. When base.stmp is not exported, plugin2's base.X points to
    // its own private base.stmp, which is not initialized, fail.
    
    package main
    
    import "plugin"
    
    func main() {
    	_, err := plugin.Open("issue44956p1.so")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top