Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for isnumber (0.33 sec)

  1. utils/utils.go

    			return string(strconv.AppendInt(append([]byte(frame.File), ':'), int64(frame.Line), 10))
    		}
    	}
    
    	return ""
    }
    
    func IsValidDBNameChar(c rune) bool {
    	return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '.' && c != '*' && c != '_' && c != '$' && c != '@'
    }
    
    // CheckTruth check string true or not
    func CheckTruth(vals ...string) bool {
    	for _, val := range vals {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/config/security/security.go

    	"P-224",
    	"P-256",
    	"P-521",
    	"P-384",
    	"X25519",
    	"X25519Kyber768Draft00",
    )
    
    func IsValidCipherSuite(cs string) bool {
    	if cs == "" || cs == "ALL" {
    		return true
    	}
    	if !unicode.IsNumber(rune(cs[0])) && !unicode.IsLetter(rune(cs[0])) {
    		// Not all of these are correct, but this is needed to support advanced cases like - and + operators
    		// without needing to parse the full expression
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. cmd/metrics-v3-bucket-replication.go

    		"Total number of bytes failed at least once to replicate in the last hour on a bucket",
    		bucketL)
    	bucketReplLastHrFailedCountMD = NewGaugeMD(bucketReplLastHrFailedCount,
    		"Total number of objects which failed replication in the last hour on a bucket",
    		bucketL)
    	bucketReplLastMinFailedBytesMD = NewGaugeMD(bucketReplLastMinFailedBytes,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. cmd/metrics-v3-api.go

    		"Total number of invalid requests", "type")
    
    	apiRequestsWaitingTotalMD = NewGaugeMD(apiRequestsWaitingTotal,
    		"Total number of requests in the waiting queue", "type")
    	apiRequestsIncomingTotalMD = NewGaugeMD(apiRequestsIncomingTotal,
    		"Total number of incoming requests", "type")
    
    	apiRequestsInFlightTotalMD = NewGaugeMD(apiRequestsInFlightTotal,
    		"Total number of requests currently in flight", "name", "type")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. cmd/metrics-v3-replication.go

    	replicationAverageActiveWorkersMD = NewGaugeMD(replicationAverageActiveWorkers,
    		"Average number of active replication workers")
    	replicationAverageQueuedBytesMD = NewGaugeMD(replicationAverageQueuedBytes,
    		"Average number of bytes queued for replication since server start")
    	replicationAverageQueuedCountMD = NewGaugeMD(replicationAverageQueuedCount,
    		"Average number of objects queued for replication since server start")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

        long getEndTime();
    
        /**
         * Returns the total number of atomic tests executed for this test. This will return 1 if this test is itself an
         * atomic test.
         *
         * @return The number of tests, possibly 0
         */
        long getTestCount();
    
        /**
         * Returns the number of successful atomic tests executed for this test.
         *
         * @return The number of tests, possibly 0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. security/pkg/server/ca/monitoring.go

    	csrCounts = monitoring.NewSum(
    		"citadel_server_csr_count",
    		"The number of CSRs received by Citadel server.",
    	)
    
    	authnErrorCounts = monitoring.NewSum(
    		"citadel_server_authentication_failure_count",
    		"The number of authentication failures.",
    	)
    
    	csrParsingErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_parsing_err_count",
    		"The number of errors occurred when parsing the CSR.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. cmd/metrics-v3-ilm.go

    	ilmTransitionActiveTasksMD          = NewGaugeMD(transitionActiveTasks, "Number of active ILM transition tasks")
    	ilmTransitionPendingTasksMD         = NewGaugeMD(transitionPendingTasks, "Number of pending ILM transition tasks in the queue")
    	ilmTransitionMissedImmediateTasksMD = NewCounterMD(transitionMissedImmediateTasks, "Number of missed immediate ILM transition tasks")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/syscall/dir_plan9.go

    	}
    	if d.Muid, b, ok = gstring(b); !ok {
    		return nil, ErrBadStat
    	}
    
    	return &d, nil
    }
    
    // pbit8 copies the 8-bit number v to b and returns the remaining slice of b.
    func pbit8(b []byte, v uint8) []byte {
    	b[0] = byte(v)
    	return b[1:]
    }
    
    // pbit16 copies the 16-bit number v to b in little-endian order and returns the remaining slice of b.
    func pbit16(b []byte, v uint16) []byte {
    	byteorder.LePutUint16(b, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kube/apimirror/probe.go

    type HTTPGetAction struct {
    	// Path to access on the HTTP server.
    	// +optional
    	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
    	// Name or number of the port to access on the container.
    	// Number must be in the range 1 to 65535.
    	// Name must be an IANA_SVC_NAME.
    	Port IntOrString `json:"port" protobuf:"bytes,2,opt,name=port"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top