Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for Iflag (0.1 sec)

  1. pkg/kube/inject/testdata/inject/hello-probes-with-flag-set-in-annotation.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/internal/telemetry/telemetry_bootstrap.go

    func NewStackCounter(name string, depth int) dummyCounter                 { return dummyCounter{} }
    func CountFlags(name string, flagSet flag.FlagSet)                        {}
    func CountFlagValue(prefix string, flagSet flag.FlagSet, flagName string) {}
    func Mode() string                                                        { return "" }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. lib/time/mkzip.go

    package main
    
    import (
    	"archive/zip"
    	"bytes"
    	"flag"
    	"fmt"
    	"hash/crc32"
    	"io/fs"
    	"log"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go run mkzip.go zoneinfo.zip\n")
    	os.Exit(2)
    }
    
    func main() {
    	log.SetPrefix("mkzip: ")
    	log.SetFlags(0)
    	flag.Usage = usage
    	flag.Parse()
    	args := flag.Args()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/reflect/export_test.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"sync"
    	"unsafe"
    )
    
    // MakeRO returns a copy of v with the read-only flag set.
    func MakeRO(v Value) Value {
    	v.flag |= flagStickyRO
    	return v
    }
    
    // IsRO reports whether v's read-only flag is set.
    func IsRO(v Value) bool {
    	return v.flag&flagStickyRO != 0
    }
    
    var CallGC = &callGC
    
    // FuncLayout calls funcLayout and returns a subset of the results for testing.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/tool/tool.go

    func isGccgoTool(tool string) bool {
    	switch tool {
    	case "cgo", "fix", "cover", "godoc", "vet":
    		return true
    	}
    	return false
    }
    
    func init() {
    	base.AddChdirFlag(&CmdTool.Flag)
    	CmdTool.Flag.BoolVar(&toolN, "n", false, "")
    }
    
    func runTool(ctx context.Context, cmd *base.Command, args []string) {
    	if len(args) == 0 {
    		telemetry.Inc("go/subcommand:tool")
    		listTools()
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. releasenotes/notes/50221.yaml

    kind: feature
    area: istioctl
    issue:
      - 49915
      - 50173
    releaseNotes:
    - |
      **Added** Allow user to name their waypoint through istioctl via --name flag on the waypoint cmd.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:52 UTC 2024
    - 344 bytes
    - Viewed (0)
  7. releasenotes/notes/50347.yaml

    kind: feature
    area: istioctl
    issue:
      - 49841
    releaseNotes:
    - |
      **Added** Add ztunnel-config istioctl command. Allow users to view Ztunnel configuration information through istioctl via ztunnel-config workload flag. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 390 bytes
    - Viewed (0)
  8. docs/auditlog/auditlog-echo.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package main
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    )
    
    var port int
    
    func init() {
    	flag.IntVar(&port, "port", 8080, "Port to listen on")
    }
    
    func mainHandler(w http.ResponseWriter, r *http.Request) {
    	body, err := io.ReadAll(r.Body)
    	defer r.Body.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. tests/binary/binaries_test.go

    package binary
    
    import (
    	"encoding/json"
    	"flag"
    	"os"
    	"os/exec"
    	"path"
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/version"
    )
    
    var (
    	binaries   *string
    	releasedir *string
    )
    
    func TestMain(m *testing.M) {
    	releasedir = flag.String("base-dir", "", "directory for binaries")
    	binaries = flag.String("binaries", "", "space separated binaries to test")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleInvocationSpec.groovy

                this
            }
    
            InvocationBuilder useDaemon(boolean flag) {
                this.useDaemon = flag
                this
            }
    
            InvocationBuilder useToolingApi() {
                useToolingApi(true)
                this
            }
    
            InvocationBuilder useToolingApi(boolean flag) {
                this.useToolingApi = flag
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top