Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for descriptor (0.18 sec)

  1. samples/addons/grafana.yaml

      pilot-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    	)
    
    	testcases := []struct {
    		description string
    		podFullName string
    		container   string
    		command     []string
    		expectError bool
    	}{{
    		description: "success case",
    		podFullName: podFullName,
    		container:   containerID,
    		command:     []string{"ls"},
    		expectError: false,
    	}, {
    		description: "no such pod",
    		podFullName: "bar" + podFullName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    import org.jetbrains.kotlin.config.LanguageFeature
    import org.jetbrains.kotlin.config.LanguageVersionSettings
    import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
    import org.jetbrains.kotlin.descriptors.ClassKind
    import org.jetbrains.kotlin.descriptors.EffectiveVisibility
    import org.jetbrains.kotlin.descriptors.Visibility
    import org.jetbrains.kotlin.diagnostics.KtPsiDiagnostic
    import org.jetbrains.kotlin.diagnostics.WhenMissingCase
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <pre>
    [32]byte
    [2*N] struct { x, y int32 }
    [1000]*float64
    [3][5]int
    [2][2][2]float64  // same as [2]([2]([2]float64))
    </pre>
    
    <h3 id="Slice_types">Slice types</h3>
    
    <p>
    A slice is a descriptor for a contiguous segment of an <i>underlying array</i> and
    provides access to a numbered sequence of elements from that array.
    A slice type denotes the set of all slices of arrays of its element type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    			t.Errorf("Test case: %v failed", i)
    		}
    	}
    }
    func TestAddContainerFsThresholds(t *testing.T) {
    	gracePeriod := time.Duration(1)
    	testCases := []struct {
    		description                   string
    		imageFs                       bool
    		containerFs                   bool
    		expectedContainerFsHard       evictionapi.Threshold
    		expectedContainerFsSoft       evictionapi.Threshold
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    	if err != nil {
    		apiErr := errorCodes.ToAPIErr(ErrMalformedXML)
    		apiErr.Description = err.Error()
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    	// validate the request
    	if err := rreq.validate(ctx, objectAPI); err != nil {
    		apiErr := errorCodes.ToAPIErr(ErrMalformedXML)
    		apiErr.Description = err.Error()
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    			accessKey:     change.Create.AccessKey,
    			secretKey:     change.Create.SecretKey,
    			sessionPolicy: sp,
    			claims:        change.Create.Claims,
    			name:          change.Create.Name,
    			description:   change.Create.Description,
    			expiration:    change.Create.Expiration,
    		}
    		_, _, err = globalIAMSys.NewServiceAccount(ctx, change.Create.Parent, change.Create.Groups, opts)
    		if err != nil {
    			return wrapSRErr(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

            "type": "dashboard"
          }
        ]
      },
      "__inputs": [
        {
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "",
          "type": "datasource",
          "pluginId": "prometheus",
          "pluginName": "Prometheus"
        }
      ],
      "description": "MinIO Grafana Dashboard - https://min.io/",
      "editable": true,
      "fiscalYearStartMonth": 0,
      "gnetId": 15306,
      "graphTooltip": 0,
      "id": 296,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top