Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for kindid (0.13 sec)

  1. src/cmd/go/internal/modload/init.go

    func ModFile() *modfile.File {
    	Init()
    	modFile := MainModules.ModFile(MainModules.mustGetSingleMainModule())
    	if modFile == nil {
    		die()
    	}
    	return modFile
    }
    
    func BinDir() string {
    	Init()
    	if cfg.GOBIN != "" {
    		return cfg.GOBIN
    	}
    	if gopath == "" {
    		return ""
    	}
    	return filepath.Join(gopath, "bin")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	}
    	return rows, nil
    }
    
    // formatResourceName receives a resource kind, name, and boolean specifying
    // whether or not to update the current name to "kind/name"
    func formatResourceName(kind schema.GroupKind, name string, withKind bool) string {
    	if !withKind || kind.Empty() {
    		return name
    	}
    
    	return strings.ToLower(kind.String()) + "/" + name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    				Scheduler: "rr",
    				Flags:     utilipvs.FlagHashed,
    			},
    			bindAddr:          true,
    			alreadyBoundAddrs: sets.New[string](),
    		},
    		{
    			// case 8, virtual server address already binded, skip sync
    			oldVirtualServer: &utilipvs.VirtualServer{
    				Address:   netutils.ParseIPSloppy("1.2.3.4"),
    				Protocol:  string(v1.ProtocolSCTP),
    				Port:      53,
    				Scheduler: "rr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Value).Float64", Method, 16},
    		{"(Value).Float64Histogram", Method, 16},
    		{"(Value).Kind", Method, 16},
    		{"(Value).Uint64", Method, 16},
    		{"All", Func, 16},
    		{"Description", Type, 16},
    		{"Description.Cumulative", Field, 16},
    		{"Description.Description", Field, 16},
    		{"Description.Kind", Field, 16},
    		{"Description.Name", Field, 16},
    		{"Float64Histogram", Type, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. RELEASE.md

        layers.
        [Try it](https://colab.sandbox.google.com/github/tensorflow/tensorflow/blob/master/tensorflow/contrib/eager/python/examples/nmt_with_attention/nmt_with_attention.ipynb?linkId=53292082).
    *   Adding support of core
        [feature columns](https://www.tensorflow.org/get_started/feature_columns)
        and [losses](https://www.tensorflow.org/api_docs/python/tf/losses) to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top