Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for envs (0.28 sec)

  1. src/net/http/fs_test.go

    	if !f.fi.dir {
    		return nil, fs.ErrInvalid
    	}
    	var fis []fs.FileInfo
    
    	limit := f.entpos + count
    	if count <= 0 || limit > len(f.fi.ents) {
    		limit = len(f.fi.ents)
    	}
    	for ; f.entpos < limit; f.entpos++ {
    		fis = append(fis, f.fi.ents[f.entpos])
    	}
    
    	if len(fis) == 0 && count > 0 {
    		return fis, io.EOF
    	} else {
    		return fis, nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    // line comments.
    //
    // A lead comment is a comment group that starts and ends in a
    // line without any other tokens and that is followed by a non-comment
    // token on the line immediately after the comment group.
    //
    // A line comment is a comment group that follows a non-comment
    // token on the same line, and that has no tokens after it on the line
    // where it ends.
    //
    // Lead and line comments may be considered documentation that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    			b := bucket[c1] - 1
    			bucket[c1] = b
    			sa[b] = int64(i + 1)
    			lastB = b
    			numLMS++
    		}
    	}
    
    	// We recorded the LMS-substring starts but really want the ends.
    	// Luckily, with two differences, the start indexes and the end indexes are the same.
    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    // line comments.
    //
    // A lead comment is a comment group that starts and ends in a
    // line without any other tokens and that is followed by a non-comment
    // token on the line immediately after the comment group.
    //
    // A line comment is a comment group that follows a non-comment
    // token on the same line, and that has no tokens after it on the line
    // where it ends.
    //
    // Lead and line comments may be considered documentation that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    		{"contains-^-carrot", true},
    		{"contains-$-dollar", true},
    		{"contains-$-dollar", true},
    		{".starts-with-a-dot", true},
    		{"ends-with-a-dot.", true},
    		{"ends-with-a-dash-", true},
    		{"-starts-with-a-dash", true},
    		{"THIS-BEINGS-WITH-UPPERCASe", true},
    		{"tHIS-ENDS-WITH-UPPERCASE", true},
    		{"ThisBeginsAndEndsWithUpperCase", true},
    		{"una ñina", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Fired after a failed assertion or a SUCCEED() invocation.
      virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;
    
      // Fired after the test ends.
      virtual void OnTestEnd(const TestInfo& test_info) = 0;
    
      // Fired after the test case ends.
      virtual void OnTestCaseEnd(const TestCase& test_case) = 0;
    
      // Fired before environment tear-down for each iteration of tests starts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // executable name should also be the first argument in argv (["ls", "-l"]).
    // envv are the environment variables that should be passed to the new
    // process (["USER=go", "PWD=/tmp"]).
    func Exec(argv0 string, argv []string, envv []string) error {
    	return syscall.Exec(argv0, argv, envv)
    }
    
    func Getag(path string) (ccsid uint16, flag uint16, err error) {
    	var val [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                                 OptimizerOptions::GlobalJitLevel global_jit_level,
                                 bool cpu_global_jit,
                                 std::string cluster_name_prefix)
          : debug_options_(debug_options),
            graph_(graph),
            graph_fingerprint_(0),
            flib_def_(flib_def),
            env_(env),
            global_jit_level_(global_jit_level),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// assistTime is the time spent by the allocator scavenging in the last GC cycle.
    	//
    	// This is reset once a GC cycle ends.
    	assistTime atomic.Int64
    
    	// backgroundTime is the time spent by the background scavenger in the last GC cycle.
    	//
    	// This is reset once a GC cycle ends.
    	backgroundTime atomic.Int64
    }
    
    const (
    	// It doesn't really matter what value we start at, but we can't be zero, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Fired after a failed assertion or a SUCCEED() invocation.
      virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;
    
      // Fired after the test ends.
      virtual void OnTestEnd(const TestInfo& test_info) = 0;
    
      // Fired after the test case ends.
      virtual void OnTestCaseEnd(const TestCase& test_case) = 0;
    
      // Fired before environment tear-down for each iteration of tests starts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top