Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 127 for Nname (0.05 sec)

  1. 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)
  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. 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)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      }
    
      tsl::string FormatLibraryFileName(const tsl::string& name,
                                        const tsl::string& version) override {
        return tsl::string("dummy_path");
      }
    
      // This is the part that would break the `CreateTmpDir` function because it
      // fails to provide a valid file system.
      absl::Status GetFileSystemForFile(const std::string& fname,
                                        tsl::FileSystem** result) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/runtime/iface.go

    		itype := toRType(&inter.Type).typeOff(i.Typ)
    		name := toRType(&inter.Type).nameOff(i.Name)
    		iname := name.Name()
    		ipkg := pkgPath(name)
    		if ipkg == "" {
    			ipkg = inter.PkgPath.Name()
    		}
    		for ; j < nt; j++ {
    			t := &xmhdr[j]
    			rtyp := toRType(typ)
    			tname := rtyp.nameOff(t.Name)
    			if rtyp.typeOff(t.Mtyp) == itype && tname.Name() == iname {
    				pkgPath := pkgPath(tname)
    				if pkgPath == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    			hostsByNamespace[ns] = hostClassification{exactHosts: sets.New[host.Name](), allHosts: make([]host.Name, 0)}
    		}
    
    		// exact hosts are saved separately for map lookup
    		if !hName.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(hName)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

        sudo tar -C /opt/cni/bin -xzvf "${cni_plugin_tarball}" &&
        rm -rf "${cni_plugin_tarball}" &&
        sudo find /opt/cni/bin -type f -not \( \
            -iname host-local \
            -o -iname bridge \
            -o -iname portmap \
            -o -iname loopback \
            \) \
            -delete
    
      # containerd 1.4.12 installed by docker in kubekins supports CNI version 0.4.0
      echo "Configuring cni"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/net/net_windows_test.go

    		if len(group) == 0 {
    			return
    		}
    		tname := strings.ToLower(getValue("Transport Name"))
    		if tname == "n/a" {
    			// skip these
    			return
    		}
    		addr := strings.ToLower(getValue("Physical Address"))
    		if addr == "disabled" || addr == "n/a" {
    			// skip these
    			return
    		}
    		addr = strings.ReplaceAll(addr, "-", ":")
    		cname := getValue("Connection Name")
    		want[cname] = addr
    		group = make(map[string]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho.go

    		return true
    	}
    	name := ldr.SymName(s)
    	if strings.HasPrefix(name, "go:itab.") {
    		return true
    	}
    	if strings.HasPrefix(name, "type:") && !strings.HasPrefix(name, "type:.") {
    		// reduce runtime typemap pressure, but do not
    		// export alg functions (type:.*), as these
    		// appear in pclntable.
    		return true
    	}
    	if strings.HasPrefix(name, "go:link.pkghash") {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top