Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 274 for Nname (0.1 sec)

  1. pkg/kubelet/kubelet_pods.go

    	for _, cStatus := range containerStatusesCopy {
    		cName := cStatus.Name
    		if _, ok := statuses[cName]; !ok {
    			// This would also ignore the infra container.
    			continue
    		}
    		if containerSeen[cName] >= 2 {
    			continue
    		}
    		var oldStatusPtr *v1.ContainerStatus
    		if oldStatus, ok := oldStatuses[cName]; ok {
    			oldStatusPtr = &oldStatus
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    //
    // TODO: b/320607042 - Add tests for this component on the python layer.
    class CalibrationComponent : public Component {
     public:
      // Name of the post-training quantization post-calibration step. Used for
      // debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_calibration";
    
      // `CalibrationComponent` ctor with necessary information required to run
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    		}
    	}
    	ports := `
      ports:
      - name: http
        number: 80
        protocol: HTTP
      - name: auto
        number: 81
      - name: tcp
        number: 82
        protocol: TCP
      - name: tls
        number: 83
        protocol: TLS
      - name: https
        number: 84
        protocol: HTTPS
      - name: grpc
        number: 85
        protocol: GRPC
      - name: h2
        number: 86
        protocol: HTTP2`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Bavail    uint32
    	Files     uint32
    	Ffree     uint32
    	Fsid      Fsid_t
    	Vfstype   int32
    	Fsize     uint32
    	Vfsnumber int32
    	Vfsoff    int32
    	Vfslen    int32
    	Vfsvers   int32
    	Fname     [32]uint8
    	Fpack     [32]uint8
    	Name_max  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Bavail    uint64
    	Files     uint64
    	Ffree     uint64
    	Fsid      Fsid64_t
    	Vfstype   int32
    	Fsize     uint64
    	Vfsnumber int32
    	Vfsoff    int32
    	Vfslen    int32
    	Vfsvers   int32
    	Fname     [32]uint8
    	Fpack     [32]uint8
    	Name_max  int32
    	_         [4]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/helpers.go

    		string(podUID)}, logPathDelimiter))
    }
    
    // parsePodUIDFromLogsDirectory parses pod logs directory name and returns the pod UID.
    // It supports both the old pod log directory /var/log/pods/UID, and the new pod log
    // directory /var/log/pods/NAMESPACE_NAME_UID.
    func parsePodUIDFromLogsDirectory(name string) types.UID {
    	parts := strings.Split(name, logPathDelimiter)
    	return types.UID(parts[len(parts)-1])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_openbsd_riscv64.go

    	SYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }
    	SYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, \
    	SYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, \
    	SYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }
    	SYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, \
    	SYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. src/debug/gosym/symtab.go

    	// package name.
    	r = strings.LastIndex(s.Name[pathend:], ".")
    	return s.Name[pathend+l+1 : pathend+r]
    }
    
    // BaseName returns the symbol name without the package or receiver name.
    func (s *Sym) BaseName() string {
    	name := s.nameWithoutInst()
    	if i := strings.LastIndex(name, "."); i != -1 {
    		if s.Name != name {
    			brack := strings.Index(s.Name, "[")
    			if i > brack {
    				// BaseName is a method name after the brackets, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_openbsd_ppc64.go

    	SYS_SIGRETURN      = 103 // { int sys_sigreturn(struct sigcontext *sigcntxp); }
    	SYS_BIND           = 104 // { int sys_bind(int s, const struct sockaddr *name, \
    	SYS_SETSOCKOPT     = 105 // { int sys_setsockopt(int s, int level, int name, \
    	SYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }
    	SYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, \
    	SYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    	}
    
    	fakeRunner := &containertest.FakeContainerCommandRunner{}
    	fakeHTTP := &fakeHTTP{}
    	fakePodStatusProvider := podStatusProviderFunc(func(uid types.UID, name, namespace string) (*kubecontainer.PodStatus, error) {
    		return &kubecontainer.PodStatus{
    			ID:        uid,
    			Name:      name,
    			Namespace: namespace,
    			IPs: []string{
    				"127.0.0.1",
    			},
    		}, nil
    	})
    
    	lcHanlder := lifecycle.NewHandlerRunner(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top