Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for Regions (0.2 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    	"k8s.io/utils/pointer"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceController struct {
    	*Controller
    	endpointSliceStore cache.Store
    	nodeStore          cache.Store
    	podStore           cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	flag.StringVar(&t.runRxStr, "run", "",
    		"run only those tests matching the regular expression; empty means to run all. "+
    			"Special exception: if the string begins with '!', the match is inverted.")
    	flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")
    	flag.BoolVar(&t.asan, "asan", false, "run in address sanitizer builder mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/time/time_test.go

    		start, end := tm.ZoneBounds()
    		if !(start.IsZero() && end.IsZero()) {
    			t.Errorf("ZoneBounds of %+v expects two zero Time, got:\n  start=%v\n  end=%v", *golden, start, end)
    		}
    	}
    
    	// If the zone begins at the beginning of time, start will be returned as a zero Time.
    	// Use math.MinInt32 to avoid overflow of int arguments on 32-bit systems.
    	beginTime := Date(math.MinInt32, January, 1, 0, 0, 0, 0, loc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    		// to inspect the old stack memory, which may no longer be valid.
    		// Even if all the variables were updated correctly, it is not clear that
    		// we want to expose a traceback that begins on one stack and ends
    		// on another stack. That could confuse callers quite a bit.
    		// Instead, we require that initAt and any other function that
    		// accepts an sp for the current goroutine (typically obtained by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/go/build/build.go

    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    		}
    		StopCPUProfile()
    
    		// Read profile to look for entries for gogo with an attempt at a traceback.
    		// "runtime.gogo" is OK, because that's the part of the context switch
    		// before the actual switch begins. But we should not see "gogo",
    		// aka "gogo<>(SB)", which does the actual switch and is marked SPWRITE.
    		parseProfile(t, prof.Bytes(), func(count uintptr, stk []*profile.Location, _ map[string][]string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    }
    
    func isDwarf64(ctxt *Link) bool {
    	return ctxt.HeadType == objabi.Haix
    }
    
    // https://sourceware.org/gdb/onlinedocs/gdb/dotdebug_005fgdb_005fscripts-section.html
    // Each entry inside .debug_gdb_scripts section begins with a non-null prefix
    // byte that specifies the kind of entry. The following entries are supported:
    const (
    	GdbScriptPythonFileId = 1
    	GdbScriptSchemeFileId = 3
    	GdbScriptPythonTextId = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * comments.
         */
    
        @Weak final MapMakerInternalMap<K, V, E, S> map;
    
        /**
         * The number of live elements in this segment's region. This does not include unset elements
         * which are awaiting cleanup.
         */
        volatile int count;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

                "userIdentity": {
                    "principalId": "AKIAIOSFODNN7EXAMPLE"
                },
                "requestParameters": {
                    "accessKey": "AKIAIOSFODNN7EXAMPLE",
                    "region": "",
                    "sourceIPAddress": "192.168.56.192"
                },
                "responseElements": {
                    "x-amz-request-id": "15C3249451E12784",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // statistically robust A/B comparisons.
    //
    // # Examples
    //
    // The package also runs and verifies example code. Example functions may
    // include a concluding line comment that begins with "Output:" and is compared with
    // the standard output of the function when the tests are run. (The comparison
    // ignores leading and trailing space.) These are examples of an example:
    //
    //	func ExampleHello() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top