Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for var_ (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top