Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for descriptor (0.27 sec)

  1. manifests/addons/dashboards/istio-workload-dashboard.json

          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "description": "",
          "fieldConfig": {
            "defaults": {
              "color": {
                "mode": "palette-classic"
              },
              "custom": {
                "axisCenteredZero": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-service-dashboard.json

          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "description": "",
          "fieldConfig": {
            "defaults": {
              "color": {
                "mode": "palette-classic"
              },
              "custom": {
                "axisCenteredZero": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      }
    
      std::string model_description;
      if (auto attr = module_->getAttrOfType<StringAttr>("tfl.description")) {
        model_description = attr.getValue().str();
      } else {
        model_description = "MLIR Converted.";
      }
    
      // Build the model and finish the model building process.
      auto description = builder_.CreateString(model_description.data());
      VectorBufferOffset<int32_t> metadata_buffer = 0;  // Deprecated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_ROOM_NUMBER = "{labels.roomNumber}";
    
        /** The key of the message: Description */
        public static final String LABELS_user_description = "{labels.user_description}";
    
        /** The key of the message: Description */
        public static final String LABELS_DESCRIPTION = "{labels.description}";
    
        /** The key of the message: Title */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// That cache entry holds a validation description,
    	// which is of the form:
    	//
    	//	filename \x00 statinfo \x00
    	//	...
    	//	compiler id
    	//
    	// If os.Stat of each filename matches statinfo,
    	// then the entry is still valid, and we can use the
    	// compiler id without any further expense.
    	//
    	// Otherwise, we compute a new validation description
    	// and compiler id (below).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    	thresholdNotifier.EXPECT().Description().Return("mock thresholdNotifier").Times(1)
    	manager.thresholdNotifiers = []ThresholdNotifier{thresholdNotifier}
    
    	// The UpdateThreshold method should be called because at least notifierRefreshInterval time has passed.
    	// The Description method should be called because UpdateThreshold returned an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/reflect/value.go

    	if t.IfaceIndir() {
    		f |= flagIndir
    	}
    	return Value{t, e.Data, f}
    }
    
    // A ValueError occurs when a Value method is invoked on
    // a [Value] that does not support it. Such cases are documented
    // in the description of each method.
    type ValueError struct {
    	Method string
    	Kind   Kind
    }
    
    func (e *ValueError) Error() string {
    	if e.Kind == 0 {
    		return "reflect: call of " + e.Method + " on zero Value"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      for (const auto& region_and_idx : llvm::enumerate(op.getBranches())) {
        std::string description =
            llvm::formatv("branch #{0} result", region_and_idx.index()).str();
        Operation* yield = region_and_idx.value().front().getTerminator();
        TypeRangeWithDesc branch_results{yield->getOperandTypes(), description};
        if (failed(VerifyTypeRangesAreCompatible(op, branch_results, results)))
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    //		print the names of packages as they are compiled.
    //	-work
    //		print the name of the temporary work directory and
    //		do not delete it when exiting.
    //	-x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. cmd/server_test.go

    	}
    }
    
    func verifyError(c *check, response *http.Response, code, description string, statusCode int) {
    	c.Helper()
    	data, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	errorResponse := APIErrorResponse{}
    	err = xml.Unmarshal(data, &errorResponse)
    	c.Assert(err, nil)
    	c.Assert(errorResponse.Code, code)
    	c.Assert(errorResponse.Message, description)
    	c.Assert(response.StatusCode, statusCode)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top