Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for desc1 (0.3 sec)

  1. src/cmd/go/internal/work/buildid.go

    	b.id.Unlock()
    
    	if id != "" {
    		return id
    	}
    
    	path := base.Tool(name)
    	desc := "go tool " + name
    
    	// Special case: undocumented -vettool overrides usual vet,
    	// for testing vet or supplying an alternative analysis tool.
    	if name == "vet" && VetTool != "" {
    		path = VetTool
    		desc = VetTool
    	}
    
    	cmdline := str.StringList(cfg.BuildToolexec, path, "-V=full")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	testcases := []struct {
    		desc            string
    		requestBody     io.Reader
    		limit           int64
    		expectedMetrics string
    		expectedErr     bool
    	}{
    		{
    			desc:            "aaaa with limit 1",
    			requestBody:     strings.NewReader("aaaa"),
    			limit:           1,
    			expectedMetrics: "",
    			expectedErr:     true,
    		},
    		{
    			desc:        "aaaa with limit 5",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

        private String describeHandlers() {
            String desc = Joiner.on(", ").join(CollectionUtils.collect(handlers, new InternalTransformer<String, MethodModelRuleExtractor>() {
                @Override
                public String transform(MethodModelRuleExtractor original) {
                    return original.getDescription();
                }
            }));
            return "[" + desc + "]";
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

     private:
      QuantizationSpecs quant_specs_;
      OpSet op_set_;
    
      Option<bool> enable_per_channel_quantization_{
          *this, "enable-per-channel-quantization", llvm::cl::init(false),
          llvm::cl::desc("Whether enable per-channel quantized weights.")};
    };
    
    // If the weight is applicable to dynamic range quantization, insert Quantize
    // and Dequantize ops with per-tensor scale.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users_test.go

    	}
    	if !set.CreateStringSet(groups...).Contains(group) {
    		c.Fatalf("created group not present!")
    	}
    	groupInfo, err := s.adm.GetGroupDescription(ctx, group)
    	if err != nil {
    		c.Fatalf("group desc err: %v", err)
    	}
    	c.Assert(groupInfo.Name, group)
    	c.Assert(set.CreateStringSet(groupInfo.Members...), set.CreateStringSet(accessKey))
    	c.Assert(groupInfo.Policy, policy)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	SIGWINCH  = syscall.Signal(0x1c)
    	SIGXCPU   = syscall.Signal(0x18)
    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

        TEST_CASE_HISTOGRAM_MSE_SYMMETRIC,
      };
    
      bool test_mode_;
      CalibrationOptions calib_opts_;
      Option<TestCase> test_case_{
          *this, "test-case",
          llvm::cl::desc(
              "Select a the test case for testing various calibration methods. It "
              "sets the value of calib_opts_ when test_mode_ is true."),
          llvm::cl::init(TEST_CASE_MIN_MAX),
          llvm::cl::values(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

        registry.insert<TF::TensorFlowDialect, arith::ArithDialect>();
      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> op_set_{
          *this, "target-opset", llvm::cl::init(OpSet::TF),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top