Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for localName (0.28 sec)

  1. pkg/config/analysis/analyzers/webhook/webhook.go

    			if wh.ClientConfig.Service == nil {
    				// it is an url, skip it
    				continue
    			}
    			fname := resource.NewFullName(
    				resource.Namespace(wh.ClientConfig.Service.Namespace),
    				resource.LocalName(wh.ClientConfig.Service.Name))
    			if !context.Exists(gvk.Service, fname) {
    				context.Report(gvk.MutatingWebhookConfiguration, msg.NewInvalidWebhook(resources[fmt.Sprintf("%v/%v", name, wh.Name)],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/injection/image-auto.go

    	}
    	return false
    }
    
    func getNamespaceLabels(c analysis.Context, nsName string) map[string]string {
    	if nsName == "" {
    		nsName = "default"
    	}
    	ns := c.Find(gvk.Namespace, resource.NewFullName("", resource.LocalName(nsName)))
    	if ns == nil {
    		return nil
    	}
    	return ns.Metadata.Labels
    }
    
    func matchesWebhooks(nsLabels, podLabels map[string]string, istioWebhooks []admitv1.MutatingWebhook) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/util/in_mesh.go

    func getNamesSidecarInjectionStatus(ns resource.Namespace, c analysis.Context) (enabled bool, ok bool) {
    	enabled, ok = false, false
    
    	namespace := c.Find(gvk.Namespace, resource.NewFullName("", resource.LocalName(ns)))
    	if namespace != nil {
    		enabled, ok = namespace.Metadata.Labels[InjectionLabelName] == InjectionLabelEnableValue, true
    	}
    
    	return enabled, ok
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/context.go

    		cfgs := store.List(colschema.GroupVersionKind(), "")
    		broken := false
    		for _, cfg := range cfgs {
    			k := key{
    				col, resource.FullName{
    					Name:      resource.LocalName(cfg.Name),
    					Namespace: resource.Namespace(cfg.Namespace),
    				}, id,
    			}
    			if res, ok := i.found[k]; ok {
    				if !broken && !fn(res) {
    					broken = true
    				}
    				cache[k] = res
    				continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

    constexpr absl::string_view kMultiplePathsToChild = R"(
    nodes {
      children {
        node_id: 1
        local_name: "foo"
      }
      children {
        node_id: 2
        local_name: "bar"
      }
      children {
        node_id: 3
        local_name: "signatures"
      }
      user_object {
        identifier: "_generic_user_object"
        version {
          producer: 1
          min_consumer: 1
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  6. cluster/addons/node-problem-detector/npd.yaml

              mountPath: /dev/kmsg
              readOnly: true
            - name: localtime
              mountPath: /etc/localtime
              readOnly: true
          volumes:
          - name: log
            hostPath:
              path: /var/log/
          - name: kmsg
            hostPath:
              path: /dev/kmsg
          - name: localtime
            hostPath:
              path: /etc/localtime
              type: "FileOrCreate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/time/zoneinfo_unix_test.go

    	localZoneName := "Local"
    	// The file may not exist.
    	if _, err := os.Stat("/etc/localtime"); os.IsNotExist(err) {
    		localZoneName = "UTC"
    	}
    
    	cases := []struct {
    		nilFlag bool
    		tz      string
    		local   string
    	}{
    		// no $TZ means use the system default /etc/localtime.
    		{true, "", localZoneName},
    		// $TZ="" means use UTC.
    		{false, "", "UTC"},
    		{false, ":", "UTC"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. src/time/zoneinfo_unix.go

    	// no $TZ means use the system default /etc/localtime.
    	// $TZ="" means use UTC.
    	// $TZ="foo" or $TZ=":foo" if foo is an absolute path, then the file pointed
    	// by foo will be used to initialize timezone; otherwise, file
    	// /usr/share/zoneinfo/foo will be used.
    
    	tz, ok := syscall.Getenv("TZ")
    	switch {
    	case !ok:
    		z, err := loadLocation("localtime", []string{"/etc"})
    		if err == nil {
    			localLoc = *z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 04 02:26:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/bundle_v2.cc

      for (const auto& trackable_child_ref : trackable_object->children()) {
        const auto& local_name = trackable_child_ref.local_name();
    
        // Compute the full child name.
        std::string child_name;
        if (object_name.empty()) {
          child_name = local_name;
        } else {
          child_name = strings::StrCat(object_name, ".", local_name);
        }
    
        // Descend down the trackable graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. build/build-image/Dockerfile

      && git config --system user.name "kube-build-image"
    
    # Fix permissions on gopath
    RUN chmod -R a+rwx $GOPATH
    
    # Make log messages use the right timezone
    ADD localtime /etc/localtime
    RUN chmod a+r /etc/localtime
    
    # Set up rsyncd
    ADD rsyncd.password /
    RUN chmod a+r /rsyncd.password
    ADD rsyncd.sh /
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top