Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for insta (0.09 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/AccessorBackedExternalResource.java

            private CountingInputStream instr;
            private long count;
    
            CountingReadableContent(ReadableContent source) {
                this.source = source;
            }
    
            @Override
            public InputStream open() throws ResourceException {
                if (instr != null) {
                    count += instr.getCount();
                }
                instr = new CountingInputStream(source.open());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    				}
    				if !Identical(inst.Inst.Type, inst2) {
    					t.Errorf("%v and %v are not identical", inst.Inst.Type, inst2)
    				}
    			}
    		})
    	}
    }
    
    type recordedInstance struct {
    	Ident *ast.Ident
    	Inst  Instance
    }
    
    func sortedInstances(m map[*ast.Ident]Instance) (instances []recordedInstance) {
    	for id, inst := range m {
    		instances = append(instances, recordedInstance{id, inst})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    				}
    				if !Identical(inst.Inst.Type, inst2) {
    					t.Errorf("%v and %v are not identical", inst.Inst.Type, inst2)
    				}
    			}
    		})
    	}
    }
    
    type recordedInstance struct {
    	Name *syntax.Name
    	Inst Instance
    }
    
    func sortedInstances(m map[*syntax.Name]Instance) (instances []recordedInstance) {
    	for id, inst := range m {
    		instances = append(instances, recordedInstance{id, inst})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    				inst.Prefix[i] |= PrefixImplicit
    			}
    			if p.IsVEX() {
    				if p == PrefixVEX3Bytes {
    					inst.Prefix[i+2] |= PrefixImplicit
    				}
    				inst.Prefix[i] |= PrefixImplicit
    				inst.Prefix[i+1] |= PrefixImplicit
    			}
    		}
    	}
    
    	if isLoop[inst.Op] || inst.Op == JCXZ || inst.Op == JECXZ || inst.Op == JRCXZ {
    		for i, p := range inst.Prefix {
    			if p == PrefixPT || p == PrefixPN {
    				inst.Prefix[i] |= PrefixImplicit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/gccgoinstallation.go

    	if err != nil {
    		return
    	}
    	inst.GccVersion = strings.TrimSpace(string(stdout))
    
    	return
    }
    
    // Return the list of export search paths for this GccgoInstallation.
    func (inst *GccgoInstallation) SearchPaths() (paths []string) {
    	for _, lpath := range inst.LibPaths {
    		spath := filepath.Join(lpath, "go", inst.GccVersion)
    		fi, err := os.Stat(spath)
    		if err != nil || !fi.IsDir() {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    func annotateAssembly(insts []plugin.Inst, samples graph.Nodes, file plugin.ObjFile) []assemblyInstruction {
    	// Add end marker to simplify printing loop.
    	insts = append(insts, plugin.Inst{
    		Addr: ^uint64(0),
    	})
    
    	// Ensure samples are sorted by address.
    	samples.Sort(graph.AddressOrder)
    
    	s := 0
    	asm := make([]assemblyInstruction, 0, len(insts))
    	for ix, in := range insts[:len(insts)-1] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    // containing the target, if any; otherwise it returns "", 0.
    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64)) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    	if inst.Op == 0 && inst.Enc == 0 {
    		return "WORD $0"
    	} else if inst.Op == 0 {
    		return "?"
    	}
    	var args []string
    	for i, a := range inst.Args[:] {
    		if a == nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		if isMem(inst.Args[0]) {
    			unmarkImplicit(&inst, PrefixDataSize)
    		}
    
    	case SYSEXIT:
    		unmarkImplicit(&inst, PrefixDataSize)
    	}
    
    	if isCondJmp[inst.Op] || isLoop[inst.Op] || inst.Op == JCXZ || inst.Op == JECXZ || inst.Op == JRCXZ {
    		if countPrefix(&inst, PrefixCS) > 0 && countPrefix(&inst, PrefixDS) > 0 {
    			for i, p := range inst.Prefix {
    				switch p & 0xFFF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/encoding/gob/codec_test.go

    		instr.op(instr, state, reflect.ValueOf(data))
    		if !bytes.Equal(signedResult, b.Bytes()) {
    			t.Errorf("int enc instructions: expected % x got % x", signedResult, b.Bytes())
    		}
    	}
    
    	// uint
    	{
    		b.Reset()
    		var data uint = 17
    		instr := &encInstr{encUint, 6, nil, 0}
    		state := newEncoderState(b)
    		instr.op(instr, state, reflect.ValueOf(data))
    		if !bytes.Equal(unsignedResult, b.Bytes()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

          auto* inst = value.getDefiningOp();
          if (!inst) {
            continue;
          }
    
          // There could be a Dequantize op after the weight tensor in cases like
          // fp16 post-training quantization. We need to get the weight from the
          // input of the Dequantize op.
          if (isa<DequantizeOp>(inst)) {
            op = inst;
            value = inst->getOperand(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top