Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for please (0.5 sec)

  1. cmd/metrics-v2.go

    		Name:      versionInfo,
    		Help:      "MinIO Release tag for the server",
    		Type:      gaugeMetric,
    	}
    }
    
    func getMinIOCommitMD() MetricDescription {
    	return MetricDescription{
    		Namespace: minioMetricNamespace,
    		Subsystem: softwareSubsystem,
    		Name:      commitInfo,
    		Help:      "Git commit hash for the MinIO release",
    		Type:      gaugeMetric,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          if (attrs && !attrs.empty()) {
            ++entry_func_count;
          }
        }
    
        // Verify that module has a least one enrty function.
        if (entry_func_count == 0) {
          return emitError(UnknownLoc::get(context),
                           "should have a least one entry function"),
                 false;
        }
      }
    
      for (auto fn : module.getOps<FuncOp>()) {
        if (!llvm::hasSingleElement(fn)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    # Cluster specific test helpers
    
    # Execute prior to running tests to build a release if required for env.
    #
    # Assumed Vars:
    #   KUBE_ROOT
    function test-build-release() {
      # Make a release
      "${KUBE_ROOT}/build/release.sh"
    }
    
    # Execute prior to running tests to initialize required structure.
    #
    # Assumed vars:
    #   Variables from config.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// it later). Set the status and phase appropriately
    	runnable := kl.canRunPod(pod)
    	if !runnable.Admit {
    		// Pod is not runnable; and update the Pod and Container statuses to why.
    		if apiPodStatus.Phase != v1.PodFailed && apiPodStatus.Phase != v1.PodSucceeded {
    			apiPodStatus.Phase = v1.PodPending
    		}
    		apiPodStatus.Reason = runnable.Reason
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		}
    
    		if size > 1*mb {
    			errs = AppendValidation(errs, WrapError(fmt.Errorf("large direct_responses may impact control plane performance, must be less than 1MB")))
    		} else if size > 100*kb {
    			errs = AppendValidation(errs, WrapWarning(fmt.Errorf("large direct_responses may impact control plane performance")))
    		}
    	}
    
    	errs = AppendValidation(errs, WrapError(validateHTTPStatus(int32(directResponse.Status))))
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    func TestPrintLease(t *testing.T) {
    	holder1 := "holder1"
    	holder2 := "holder2"
    	tests := []struct {
    		lease    coordination.Lease
    		expected []metav1.TableRow
    	}{
    		{
    			lease: coordination.Lease{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "lease1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: coordination.LeaseSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	reclaimPolicyStr := string(obj.Spec.PersistentVolumeReclaimPolicy)
    
    	aQty := obj.Spec.Capacity[api.ResourceStorage]
    	aSize := aQty.String()
    
    	phase := obj.Status.Phase
    	if obj.ObjectMeta.DeletionTimestamp != nil {
    		phase = "Terminating"
    	}
    	volumeMode := "<unset>"
    	if obj.Spec.VolumeMode != nil {
    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	volumeAttributeClass := "<unset>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    				}
    			}
    
    			o = ldr.SymValue(rs) + r.Add()
    			if rt == objabi.R_PEIMAGEOFF {
    				// The R_PEIMAGEOFF offset is a RVA, so subtract
    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    			// fail at runtime. See https://golang.org/issue/7980.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top