Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for readCode (0.18 sec)

  1. src/cmd/internal/test2json/testdata/smiley.json

    {"Action":"pass","Test":"Test☺☹/1"}
    {"Action":"output","Test":"Test☺☹/7","Output":"    --- PASS: Test☺☹/7 (0.19s)\n"}
    {"Action":"output","Test":"Test☺☹/7","Output":"        vet_test.go:114: φιλεσ: [\"testdata/deadcode.go\" \"testdata/shift.go\"]\n"}
    {"Action":"pass","Test":"Test☺☹/7"}
    {"Action":"pass","Test":"Test☺☹"}
    {"Action":"output","Test":"Test☺☹Dirs","Output":"--- PASS: Test☺☹Dirs (0.01s)\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sccp.go

    	}
    }
    
    // rewireSuccessor rewires corresponding successors according to constant value
    // discovered by previous analysis. As the result, some successors become unreachable
    // and thus can be removed in further deadcode phase
    func rewireSuccessor(block *Block, constVal *Value) bool {
    	switch block.Kind {
    	case BlockIf:
    		block.removeEdge(int(constVal.AuxInt))
    		block.Kind = BlockPlain
    		block.Likely = BranchUnknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    			if err := cache.RemovePod(logger, pod); err == nil {
    				t.Error("expected error, no error found")
    			}
    
    			// Node that owned the Pod should be at the head of the list.
    			if cache.headNode.info.Node().Name != nodeName {
    				t.Errorf("node %q is not at the head of the list", nodeName)
    			}
    		})
    	}
    }
    
    func TestForgetPod(t *testing.T) {
    	nodeName := "node"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    )
    
    type deadValueChoice bool
    
    const (
    	leaveDeadValues  deadValueChoice = false
    	removeDeadValues                 = true
    )
    
    // deadcode indicates whether rewrite should try to remove any values that become dead.
    func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter, deadcode deadValueChoice) {
    	// repeat rewrites until we find no more rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	// TODO: fix. Maybe mmap the file.
    	//defer f.Close()
    
    	hash, err := readnote(f, ELF_NOTE_GO_NAME, ELF_NOTE_GOABIHASH_TAG)
    	if err != nil {
    		Errorf(nil, "cannot read ABI hash from shared library %s: %v", libpath, err)
    		return
    	}
    
    	depsbytes, err := readnote(f, ELF_NOTE_GO_NAME, ELF_NOTE_GODEPS_TAG)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    			if _, err := io.ReadFull(client, reply[:]); err != nil {
    				panic(err)
    			}
    			c.Close()
    			readDone <- struct{}{}
    		}()
    
    		if i&1 == 1 {
    			startWrite <- struct{}{}
    			startRead <- struct{}{}
    		} else {
    			startRead <- struct{}{}
    			startWrite <- struct{}{}
    		}
    		<-readDone
    	}
    }
    
    var getClientCertificateTests = []struct {
    	setup               func(*Config, *Config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func.go

    	// true if closure inside a function; false if a simple function or a
    	// closure in a global variable initialization
    	funcIsHiddenClosure
    	funcIsDeadcodeClosure        // true if closure is deadcode
    	funcHasDefer                 // contains a defer statement
    	funcNilCheckDisabled         // disable nil checks when compiling this function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    // appears on panic path)
    //
    // 2) adjustments that take into account specific interesting values
    // passed at a call site (ex: passing a constant that could result in
    // cprop/deadcode in the caller)
    //
    // 3) adjustments that take into account values returned from the call
    // at a callsite (ex: call always returns the same inlinable function,
    // and return value flows unmodified into an indirect call)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/symtab.go

    		// important that the offsets we computed stay unchanged by the external
    		// linker, i.e. all symbols in Textp should not be removed.
    		// Most of them are actually referenced (our deadcode pass ensures that),
    		// except go:buildid which is generated late and not used by the program.
    		addRef("go:buildid")
    	}
    
    	// text section information
    	slice(textsectionmapSym, uint64(nsections))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pcln.go

    			for j := goobj.CUFileIndex(0); j < max; j++ {
    				fileOffset, ok := fileOffsets[cu.FileTable[j]]
    				if !ok {
    					// We're looping through all possible file indices. It's possible a file's
    					// been deadcode eliminated, and although it's a valid file in the CU, it's
    					// not needed in this binary. When that happens, use an invalid offset.
    					fileOffset = ^uint32(0)
    				}
    				off = sb.SetUint32(ctxt.Arch, off, fileOffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top