Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 856 for Initialize (0.3 sec)

  1. cni/pkg/install/install_test.go

    			saNewFilename:       "token-bar",
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			// Create temp directory for files
    			tempDir := t.TempDir()
    
    			// Initialize parameters
    			ctx, cancel := context.WithCancel(context.Background())
    			defer cancel()
    			cfg := &config.InstallConfig{
    				MountedCNINetDir: tempDir,
    				ChainedCNIPlugin: c.chainedCNIPlugin,
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

              clEnumValN(TEST_CASE_HISTOGRAM_MSE_SYMMETRIC,
                         "HISTOGRAM_MSE_SYMMETRIC",
                         "Uses HISTOGRAM_MSE_SYMMETRIC calibration "
                         "method"))};
    
      // Initialize for tests.
      void initializeForTest() {
        if (!test_mode_) return;
    
        switch (test_case_.getValue()) {
          case TEST_CASE_MIN_MAX:
            calib_opts_.set_calibration_method(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

      // attribute for all the relevant nodes.
      tensorflow::OpOrArgLocNameMapper name_mapper;
      MLIRContext* ctx = module.getContext();
      for (Region* region : regions_with_token) {
        // Initialize the token with the special argument token. This gets mapped to
        // input token in the parent op or a new token for the entry computation.
        auto token = StringAttr::get(ctx, tensorflow::kXlaTokenArgNodeName);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	}
    	authn.healthCheck.Store(&errorHolder{
    		err: fmt.Errorf("oidc: authenticator for issuer %q is not initialized", authn.jwtAuthenticator.Issuer.URL),
    	})
    
    	issuerURL := opts.JWTAuthenticator.Issuer.URL
    	if opts.KeySet != nil {
    		// We already have a key set, synchronously initialize the verifier.
    		authn.setVerifier(&idTokenVerifier{
    			oidc.NewVerifier(issuerURL, opts.KeySet, verifierConfig),
    			audiences,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

            saveToken();
            return asHtml(path_AdminDictStopwords_AdminDictStopwordsEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                    form.dictId = dictId;
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/topology_hints.go

    }
    
    func (m *ManagerImpl) generateDeviceTopologyHints(resource string, available sets.Set[string], reusable sets.Set[string], request int) []topologymanager.TopologyHint {
    	// Initialize minAffinitySize to include all NUMA Nodes
    	minAffinitySize := len(m.numaNodes)
    
    	// Iterate through all combinations of NUMA Nodes and build hints from them.
    	hints := []topologymanager.TopologyHint{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/proxy/metrics/metrics.go

    func newNFAcctMetricCollector(counter string, description *metrics.Desc) *nfacctMetricCollector {
    	client, err := nfacct.New()
    	if err != nil {
    		klog.ErrorS(err, "failed to initialize nfacct client")
    	}
    	return &nfacctMetricCollector{
    		client:      client,
    		counter:     counter,
    		description: description,
    	}
    }
    
    type nfacctMetricCollector struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    	tname, _ := obj.(*TypeName)
    	if tname != nil && tname.IsAlias() {
    		// If we use Alias nodes, it is initialized with Typ[Invalid].
    		// TODO(gri) Adjust this code if we initialize with nil.
    		if !check.conf._EnableAlias {
    			check.validAlias(tname, Typ[Invalid])
    		}
    	}
    
    	// report a more concise error for self references
    	if len(cycle) == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/math/big/intconv_test.go

    			if got != test.out {
    				t.Errorf("#%dc got %s; want %s", i, got, test.out)
    			}
    		}
    	}
    }
    
    func TestSetString(t *testing.T) {
    	tmp := new(Int)
    	for i, test := range stringTests {
    		// initialize to a non-zero value so that issues with parsing
    		// 0 are detected
    		tmp.SetInt64(1234567890)
    		n1, ok1 := new(Int).SetString(test.in, test.base)
    		n2, ok2 := tmp.SetString(test.in, test.base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/node.go

    	addUpgradeNodeFlags(cmd.Flags(), nodeOptions)
    	options.AddConfigFlag(cmd.Flags(), &nodeOptions.cfgPath)
    	options.AddPatchesFlag(cmd.Flags(), &nodeOptions.patchesDir)
    
    	// initialize the workflow runner with the list of phases
    	nodeRunner.AppendPhase(phases.NewPreflightPhase())
    	nodeRunner.AppendPhase(phases.NewControlPlane())
    	nodeRunner.AppendPhase(phases.NewKubeletConfigPhase())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top