Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 856 for Initialize (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        // -----------------------------------------------------
        //                                               Details
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminLabeltype_AdminLabeltypeEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerRoleTypeItems(data);
            });
        }
    
        @Execute
        @Secured({ ROLE })
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

        registry.insert<quant::QuantizationDialect,
                        quantfork::QuantizationForkDialect>();
      }
    
      // Parses the serialized quant stats protobuf and initialize the internal
      // data structure. This method must be called after the pass is created.
      bool ParseQuantStats(const std::string &stats_str);
    
     private:
      void ImportAsStatsOps(OpBuilder b, Operation *op, int index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

      }
    
     private:
      void runOnOperation() override;
    
      bool test_mode_;
      tensorflow::quantization::QuantizationOptions quant_options_;
    
      // Initialize for tests.
      void initializeForTest() {
        if (!test_mode_) return;
    
        tensorflow::quantization::QuantizationComponentSpec quant_spec;
        quant_spec.set_quantization_component(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    		}
    
    		if val.Type().IsInterface() {
    			// val is an interface type.
    			// If val is nil, we can statically initialize l;
    			// both words are zero and so there no work to do, so report success.
    			// If val is non-nil, we have no concrete type to record,
    			// and we won't be able to statically initialize its value, so report failure.
    			return val.Op() == ir.ONIL
    		}
    
    		if val.Type().HasShape() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais.go

    // the interior L-type indexes too.
    // (Only the leftmost L-type index is needed by induceSubS_8_32.)
    func induceSubL_8_32(text []byte, sa, freq, bucket []int32) {
    	// Initialize positions for left side of character buckets.
    	bucketMin_8_32(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    	// must not fail
    	if err != nil {
    		return nil, nil, err
    	}
    	handler := NewPodTolerationsPlugin(pluginConfig)
    	pluginInitializer := genericadmissioninitializer.New(c, nil, f, nil, nil, nil, nil)
    	pluginInitializer.Initialize(handler)
    	err = admission.ValidateInitialization(handler)
    	return handler, f, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/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
    - 29.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminFileauth_AdminFileauthEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerProtocolSchemeItems(data);
                registerFileConfigItems(data);
            });
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminReqheader_AdminReqheaderEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            }).renderWith(data -> {
                registerWebConfigItems(data);
            });
        }
    
        @Execute
        @Secured({ ROLE })
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top