Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 6,874 for Uncommon (0.13 sec)

  1. build/common.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    
    # Common utilities, variables and checks for all build scripts.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Unset CDPATH, having it set messes up with script import paths
    unset CDPATH
    
    USER_ID=$(id -u)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	defer c.mutex.RUnlock()
    	if c.SessionTicketsDisabled {
    		return nil
    	}
    	c.initLegacySessionTicketKeyRLocked()
    	if len(c.sessionTicketKeys) != 0 {
    		return c.sessionTicketKeys
    	}
    	// Fast path for the common case where the key is fresh enough.
    	if len(c.autoSessionTicketKeys) > 0 && c.time().Sub(c.autoSessionTicketKeys[0].created) < ticketKeyRotation {
    		return c.autoSessionTicketKeys
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/encoding/asn1/common.go

    Russ Cox <******@****.***> 1632321992 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    Kensei Nakada <******@****.***> 1708761634 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. operator/pkg/util/common.go

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/common.go

    Kuat <******@****.***> 1711758663 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/common.go

    John Howard <******@****.***> 1658777447 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. pkg/config/schema/kubetypes/common.go

    John Howard <******@****.***> 1713371920 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common.go

    	latest := ""
    
    	// Find the common cardinality from previously collected
    	// occurrences of elements.
    	for etag, count := range etagOccurrenceMap {
    		if count < maxima {
    			continue
    		}
    
    		// We are at or above maxima
    		if count > maxima {
    			maxima = count
    			latest = etag
    		}
    	}
    
    	// Return the collected common max time, with maxima
    	return latest, maxima
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    Cherry Mui <******@****.***> 1669138745 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top