Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for STARTING (0.13 sec)

  1. src/runtime/traceback.go

    }
    
    func (u *unwinder) initAt(pc0, sp0, lr0 uintptr, gp *g, flags unwindFlags) {
    	// Don't call this "g"; it's too easy get "g" and "gp" confused.
    	if ourg := getg(); ourg == gp && ourg == ourg.m.curg {
    		// The starting sp has been passed in as a uintptr, and the caller may
    		// have other uintptr-typed stack references as well.
    		// If during one of the calls that got us here or during one of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    	{"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
    	// Dereferencing nil pointer while evaluating function arguments should not panic. Issue 7333.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	}
    	lockInit(&globalAlloc.mutex, lockRankGlobalAlloc)
    
    	// Create initial arena growth hints.
    	if goarch.PtrSize == 8 {
    		// On a 64-bit machine, we pick the following hints
    		// because:
    		//
    		// 1. Starting from the middle of the address space
    		// makes it easier to grow out a contiguous range
    		// without running in to some other mapping.
    		//
    		// 2. This makes Go heap addresses more easily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // `cond_output`, `body_outputs`, and `name`. The `body_outputs` buffer will be
    // allocated to size `ninputs`. The caller should build `cond_graph` and
    // `body_graph` starting from the inputs, and store the final outputs in
    // `cond_output` and `body_outputs`.
    //
    // If `status` is OK, the caller must call either TF_FinishWhile or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    			// In either case we expect an expression x (which may
    			// just be a name, or a more complex expression) which
    			// we can analyze further.
    			//
    			// A type parameter list may have a type bound starting
    			// with a "[" as in: P []E. In that case, simply parsing
    			// an expression would lead to an error: P[] is invalid.
    			// But since index or slice expressions are never constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            // XML schema and this will not change anytime soon. We do not want to build effective models based on
            // models without a version starting with 3.4.
            validateStringNotEmpty("modelVersion", problems, Severity.ERROR, Version.V20, m.getModelVersion(), m);
    
            validateModelVersion(problems, m.getModelVersion(), m, VALID_MODEL_VERSIONS);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. configure.py

        write_action_env_to_bazelrc('HIP_PLATFORM', environ_cp.get('HIP_PLATFORM'))
    
      if is_windows():
        print('\nWARNING: Cannot build with CUDA support on Windows.\n'
              'Starting in TF 2.11, CUDA build is not supported for Windows. '
              'For using TensorFlow GPU on Windows, you will need to build/install '
              'TensorFlow in WSL2.\n')
        environ_cp['TF_NEED_CUDA'] = '0'
      else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/testing/testing.go

    }
    
    func (c *common) checkFuzzFn(name string) {
    	if c.inFuzzFn {
    		panic(fmt.Sprintf("testing: f.%s was called inside the fuzz target, use t.%s instead", name, name))
    	}
    }
    
    // frameSkip searches, starting after skip frames, for the first caller frame
    // in a function not marked as a helper and returns that frame.
    // The search stops if it finds a tRunner function that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    		"pilot_no_ip",
    		"Pods not found in the endpoint table, possibly invalid.",
    	)
    
    	// ProxyStatusEndpointNotReady represents proxies found not be ready.
    	// Updated by GetProxyServiceTargets. Normal condition when starting
    	// an app with readiness, error if it doesn't change to 0.
    	ProxyStatusEndpointNotReady = monitoring.NewGauge(
    		"pilot_endpoint_not_ready",
    		"Endpoint found in unready state.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server_test.go

    		"stats summary sub":               {url: "/stats/summary", bucket: "stats"},
    		"invalid path":                    {url: "/junk", bucket: "other"},
    		"invalid path starting with good": {url: "/healthzjunk", bucket: "other"},
    	}
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    	for _, test := range tests {
    		path := test.url
    		bucket := test.bucket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top