Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,432 for meth (0.07 sec)

  1. pilot/pkg/bootstrap/mesh.go

    				log.Warnf("Using local mesh config file %s, in cluster configs ignored", args.MeshConfigFile)
    			}
    			return
    		}
    	}
    
    	// Config file either didn't exist or failed to load.
    	if s.kubeClient == nil {
    		// Use a default mesh.
    		meshConfig := mesh.DefaultMeshConfig()
    		s.environment.Watcher = mesh.NewFixedWatcher(meshConfig)
    		log.Warnf("Using default mesh - missing file %s and no k8s client", args.MeshConfigFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/meta.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/uuid"
    )
    
    // WipeObjectMetaSystemFields erases fields that are managed by the system on ObjectMeta.
    func WipeObjectMetaSystemFields(meta metav1.Object) {
    	meta.SetCreationTimestamp(metav1.Time{})
    	meta.SetUID("")
    	meta.SetDeletionTimestamp(nil)
    	meta.SetDeletionGracePeriodSeconds(nil)
    	meta.SetSelfLink("")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 19 01:47:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    func (meta *ObjectMeta) SetGenerateName(generateName string) { meta.GenerateName = generateName }
    func (meta *ObjectMeta) GetUID() types.UID                   { return meta.UID }
    func (meta *ObjectMeta) SetUID(uid types.UID)                { meta.UID = uid }
    func (meta *ObjectMeta) GetResourceVersion() string          { return meta.ResourceVersion }
    func (meta *ObjectMeta) SetResourceVersion(version string)   { meta.ResourceVersion = version }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh.go

    package main
    
    import (
    	"os"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/cmd/mesh"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/version"
    )
    
    func main() {
    	version.Info.Version = binversion.OperatorVersionString
    	rootCmd := mesh.GetRootCmd(cli.NewCLIContext(nil), os.Args[1:])
    	if err := rootCmd.Execute(); err != nil {
    		os.Exit(1)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 963 bytes
    - Viewed (0)
  5. src/runtime/internal/math/math.go

    // Copyright 2018 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 math
    
    import "internal/goarch"
    
    const MaxUintptr = ^uintptr(0)
    
    // MulUintptr returns a * b and whether the multiplication overflowed.
    // On supported platforms this is an intrinsic lowered by the compiler.
    func MulUintptr(a, b uintptr) (uintptr, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

        kind: Service
        name: echo
      rules:
      - backendRefs:
        - name: echo
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: dual # applies to mesh and explicit gateway
      namespace: default
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: example
      - name: gateway
        namespace: istio-system
      hostnames: ["foo.example.com"]
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/mesh/mesh.go

    //  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.
    
    package mesh
    
    import (
    	"fmt"
    	"time"
    
    	"istio.io/istio/pkg/test/loadbalancersim/locality"
    	"istio.io/istio/pkg/test/loadbalancersim/network"
    	"istio.io/istio/pkg/test/loadbalancersim/timer"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: consumer-override-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - httpbin-apple.apple.svc.domain.suffix
      http:
      - match:
        - port: 80
        name: default.consumer-override.0
        route:
        - destination:
            host: httpbin-apple.apple.svc.domain.suffix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. samples/ambient-argo/meta-application.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: meta-application
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      destination:
        name: in-cluster
        namespace: argocd
        server: ''
      sources:
      - path: istio
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
      - path: application
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-consist.zip

    1/xl.meta XL2 Æ b ¨Versions‘‚¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ÔLã°ê8EÒŸˆ”Ù Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò '¤SizeÒ 'Â¥MTimeÓ ¿W '’žÉ§MetaSys ¼X-Minio-Internal-actual-sizeÄ 141250§MetaUsr‚¤etagÙ"51fe09d68bacc8c5a68a-1¬content-type¸application/octet-streamÎöa‰ 10/xl.meta XL2 Æ b ¨Versions‘‚¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ÔLã°ê8EÒŸˆ”Ù Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 19 18:48:00 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top