Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 292 for getEnd (0.29 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                    Config.getInt( "jcifs.smb1.netbios.lookupRespLimit", 3 );
        private static final String DOMAIN =
                    Config.getProperty("jcifs.smb1.smb.client.domain", null);
        private static final String USERNAME =
                    Config.getProperty("jcifs.smb1.smb.client.username", null);
        private static final int CACHE_POLICY =
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  2. cni/test/install_cni.go

    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	cniConfSubDir    = "/testdata/pre/"
    	k8sSvcAcctSubDir = "/testdata/k8s_svcacct/"
    
    	defaultFileMode = 0o644
    )
    
    func getEnv(key, fallback string) string {
    	if value, ok := os.LookupEnv(key); ok {
    		return value
    	}
    	return fallback
    }
    
    func mktemp(dir, prefix string, t *testing.T) string {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sysnb	Geteuid() (uid int)
    //sysnb	Getgid() (gid int)
    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// error creating telemetry.LocalDir in the counter.Open call above.
    		// Don't start the child.
    		return result
    	}
    
    	var reportCrashes = config.ReportCrashes && crashmonitor.Supported()
    
    	switch v := os.Getenv(telemetryChildVar); v {
    	case "":
    		// The subprocess started by parent has GO_TELEMETRY_CHILD=1.
    		childShouldUpload := config.Upload && acquireUploadToken()
    		if reportCrashes || childShouldUpload {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/distpack/pack.go

    	}
    
    	// Load context.
    	goroot = runtime.GOROOT()
    	if goroot == "" {
    		log.Fatalf("missing $GOROOT")
    	}
    	gohostos = runtime.GOOS
    	gohostarch = runtime.GOARCH
    	goos = os.Getenv("GOOS")
    	if goos == "" {
    		goos = gohostos
    	}
    	goarch = os.Getenv("GOARCH")
    	if goarch == "" {
    		goarch = gohostarch
    	}
    	goosUnderGoarch := goos + "_" + goarch
    	goosDashGoarch := goos + "-" + goarch
    	exe := ""
    	if goos == "windows" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/init.go

    	}
    
    	if cfg.BuildP <= 0 {
    		base.Fatalf("go: -p must be a positive integer: %v\n", cfg.BuildP)
    	}
    
    	// Make sure CC, CXX, and FC are absolute paths.
    	for _, key := range []string{"CC", "CXX", "FC"} {
    		value := cfg.Getenv(key)
    		args, err := quoted.Split(value)
    		if err != nil {
    			base.Fatalf("go: %s environment variable could not be parsed: %v", key, err)
    		}
    		if len(args) == 0 {
    			continue
    		}
    		path := args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. src/os/signal/signal_cgo_test.go

    		t.Skip("skipping: wait hangs on dragonfly; see https://go.dev/issue/56132")
    	}
    
    	scale := 1
    	if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    		if sc, err := strconv.Atoi(s); err == nil {
    			scale = sc
    		}
    	}
    	pause := time.Duration(scale) * 10 * time.Millisecond
    
    	lvl := os.Getenv("GO_TEST_TERMINAL_SIGNALS")
    	switch lvl {
    	case "":
    		// Main test process, run code below.
    		break
    	case "1":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/test/api_meta_meta_test.go

    		t.Errorf("expected %v, got %v", e, a)
    	}
    	if e, a := "prefix", accessor.GetGenerateName(); e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    	if e, a := "uid", string(accessor.GetUID()); e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    	if e, a := "1", accessor.GetResourceVersion(); e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

          grouped_if_ops;
      llvm::SmallVector<Value, 4> if_cond_order;
      block->walk([&](TF::IfRegionOp if_op) {
        auto it = grouped_if_ops.try_emplace(if_op.getCond());
        if (it.second) {
          if_cond_order.push_back(if_op.getCond());
        }
        it.first->getSecond().push_back(if_op);
      });
    
      MapToRegionVec2D planned_merged_groups;
      MapToOperationVec2D moved_ops_groups;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/plugin_test.go

    	"internal/platform"
    	"internal/testenv"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    var globalSkip = func(t *testing.T) {}
    
    var gcflags string = os.Getenv("GO_GCFLAGS")
    var goroot string
    
    func TestMain(m *testing.M) {
    	flag.Parse()
    	log.SetFlags(log.Lshortfile)
    	os.Exit(testMain(m))
    }
    
    // tmpDir is used to cleanup logged commands -- s/tmpDir/$TMPDIR/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top