Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for hiter (1.39 sec)

  1. src/cmd/link/internal/loader/loader.go

    // If a name is in this map, it is allowed only in listed packages,
    // even if it has a linknamed definition.
    var blockedLinknames = map[string][]string{
    	// coroutines
    	"runtime.coroswitch": {"iter"},
    	"runtime.newcoro":    {"iter"},
    	// weak references
    	"internal/weak.runtime_registerWeakPointer": {"internal/weak"},
    	"internal/weak.runtime_makeStrongFromWeak":  {"internal/weak"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    				runTests: "SystemRoots",
    				env:      []string{"GOOS=ios", "CGO_ENABLED=1"},
    				pkg:      "crypto/x509",
    			})
    	}
    
    	// GOEXPERIMENT=rangefunc tests
    	if !t.compileOnly {
    		for _, pkg := range []string{"iter", "slices", "maps"} {
    			t.registerTest("GOEXPERIMENT=rangefunc",
    				&goTest{
    					variant: pkg,
    					short:   t.short,
    					env:     []string{"GOEXPERIMENT=rangefunc"},
    					pkg:     pkg,
    				})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        // We're expecting the original model to have a single CollectiveGatherV2Op
        // that gets split into 3 copies in the start_step_0, start_step_1 and
        // new_while_body functions. We use global iter id to set the instance key.
        // Therefore, we add an offset to the output of the global_iter_id_op to
        // make sure the instance keys are unique among them we replace the original
        // instance key as:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    					q->pcond = q->link->link;
    					bflag = 1;
    				}
    			}
    			*/
    			opc = int32(p.Pc)
    			m = int(o.size)
    			if p.Pc != int64(opc) {
    				bflag = 1
    			}
    
    			//print("%v pc changed %d to %d in iter. %d\n", p, opc, (int32)p->pc, times);
    			pc = int32(p.Pc + int64(m))
    
    			if m%4 != 0 || p.Pc%4 != 0 {
    				ctxt.Diag("pc invalid: %v size=%d", p, m)
    			}
    
    			if m/4 > len(out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top