Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for var_ (0.08 sec)

  1. src/text/template/parse/parse_test.go

    		hasError, `unclosed3:4: unclosed action started at unclosed3:2`},
    	{"unclosed4",
    		"{{\n\n\n\n\n",
    		hasError, `unclosed4:6: unclosed action started at unclosed4:1`},
    	{"var1",
    		"line1\n{{\nx\n}}",
    		hasError, `var1:3: function "x" not defined`},
    	// Specific errors.
    	{"function",
    		"{{foo}}",
    		hasError, `function "foo" not defined`},
    	{"comment1",
    		"{{/*}}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen_test_h.golden

      //   Returns the buffer of type T for variable X.  If the allocation mode is
      //   RESULTS_PROFILES_AND_TEMPS_ONLY then this buffer is the same as the
      //   buffer passed to set_var_X_data.
      //
      // T& var_X(...dim indices...)
      //   Returns a reference to the value of type T for variable X,
      //   with dim indices specifying which value. No bounds checking is performed
      //   on dim indices.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                        cacheDir.eachFile(groovy.io.FileType.DIRECTORIES) { File f ->
                            assert f.name.startsWith('tar_')
                        }
                    }
                }
            """
    
            when:
            succeeds 'verify'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    func test22906(t *testing.T) {
    	var x1 C.jobject = 0 // Note: 0, not nil. That makes sure we use uintptr for these types.
    	_ = x1
    	var x2 C.jclass = 0
    	_ = x2
    	var x3 C.jthrowable = 0
    	_ = x3
    	var x4 C.jstring = 0
    	_ = x4
    	var x5 C.jarray = 0
    	_ = x5
    	var x6 C.jbooleanArray = 0
    	_ = x6
    	var x7 C.jbyteArray = 0
    	_ = x7
    	var x8 C.jcharArray = 0
    	_ = x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    				"uid-0": {
    					fullname: "foo_",
    				},
    				"uid-1": {
    					fullname: "bar_",
    				},
    			},
    			startedStaticPodsByFullname: map[string]types.UID{
    				"bar_": types.UID("uid-1"),
    			},
    			expectedStartedStaticPodsByFullname: map[string]types.UID{
    				"foo_": types.UID("uid-0"),
    				"bar_": types.UID("uid-1"),
    			},
    			allowed:     true,
    			allowedEver: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. tests/test_generate_unique_id_function.py

    from fastapi.testclient import TestClient
    from pydantic import BaseModel
    
    
    def custom_generate_unique_id(route: APIRoute):
        return f"foo_{route.name}"
    
    
    def custom_generate_unique_id2(route: APIRoute):
        return f"bar_{route.name}"
    
    
    def custom_generate_unique_id3(route: APIRoute):
        return f"baz_{route.name}"
    
    
    class Item(BaseModel):
        name: str
        price: float
    
    
    class Message(BaseModel):
        title: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/ptr_test.go

    		name:    "varok",
    		c:       `void f12(char** parg) {}`,
    		support: `var hello12 = [...]C.char{'h', 'e', 'l', 'l', 'o'}`,
    		body:    `parg := [1]*C.char{&hello12[0]}; C.f12(&parg[0])`,
    		fail:    false,
    	},
    	{
    		// Passing the address of a static variable with
    		// pointers does matter.
    		name:    "var1",
    		c:       `void f13(char*** parg) {}`,
    		support: `var hello13 = [...]*C.char{new(C.char)}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * A `test` task that runs the tests from _src/test/java_
     * A `jar` task that packages the `main` compiled classes and resources from _src/main/resources_ into a single JAR named _<project>-<version>.jar_
     * A `javadoc` task that generates Javadoc for the `main` classes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    func (lv *liveness) emitStackObjects() *obj.LSym {
    	var vars []*ir.Name
    	for _, n := range lv.fn.Dcl {
    		if shouldTrack(n) && n.Addrtaken() && n.Esc() != ir.EscHeap {
    			vars = append(vars, n)
    		}
    	}
    	if len(vars) == 0 {
    		return nil
    	}
    
    	// Sort variables from lowest to highest address.
    	sort.Slice(vars, func(i, j int) bool { return vars[i].FrameOffset() < vars[j].FrameOffset() })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    var EDIT_LEAVE=0;var EDIT_UPDATE=1;var EDIT_ADD=2;var EDIT_DELETE=3;function ArraySplice(){}
    ArraySplice.prototype={calcEditDistances:function(current,currentStart,currentEnd,old,oldStart,oldEnd){var rowCount=oldEnd-oldStart+1;var columnCount=currentEnd-currentStart+1;var distances=new Array(rowCount);for(var i=0;i<rowCount;i++){distances[i]=new Array(columnCount);distances[i][0]=i;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top