Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,874 for Uncommon (0.13 sec)

  1. pkg/kube/controllers/common.go

    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("controllers", "common controller logic")
    
    // Object is a union of runtime + meta objects. Essentially every k8s object meets this interface.
    // and certainly all that we care about.
    type Object interface {
    	metav1.Object
    	runtime.Object
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. cluster/common.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Common utilities for kube-up/kube-down
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd)
    
    DEFAULT_KUBECONFIG="${HOME:-.}/.kube/config"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. common/Makefile.common.mk

    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    # istio/community has its own CONTRIBUTING.md file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package typeparams contains common utilities for writing tools that
    // interact with generic Go code, as introduced with Go 1.18. It
    // supplements the standard library APIs. Notably, the StructuralTerms
    // API computes a minimal representation of the structural
    // restrictions on a type parameter.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/common.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    )
    
    // LoadOrDefaultConfigurationOptions holds the common LoadOrDefaultConfiguration options.
    type LoadOrDefaultConfigurationOptions struct {
    	// AllowExperimental indicates whether the experimental / work in progress APIs can be used.
    	AllowExperimental bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. cluster/gce/windows/common.psm1

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    <#
    .SYNOPSIS
      Library containing common variables and code used by other PowerShell modules
      and scripts for configuring Windows nodes.
    #>
    
    # IMPORTANT PLEASE NOTE:
    # Any time the file structure in the `windows` directory changes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  7. security/pkg/pki/ra/common.go

    Jackie Elliott <******@****.***> 1694462250 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. tools/certs/common.mk

    Zhonghu Xu <******@****.***> 1676883116 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. operator/pkg/validate/common.go

    Oleksandr Redko <******@****.***> 1691681703 +0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. src/archive/tar/common.go

    	c_ISUID = 04000 // Set uid
    	c_ISGID = 02000 // Set gid
    	c_ISVTX = 01000 // Save text (sticky bit)
    
    	// Common Unix mode constants; these are not defined in any common tar standard.
    	// Header.FileInfo understands these, but FileInfoHeader will never produce these.
    	c_ISDIR  = 040000  // Directory
    	c_ISFIFO = 010000  // FIFO
    	c_ISREG  = 0100000 // Regular file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top