Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for MARK (0.16 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    			// the roots to the final build list.
    			//
    			// Instead, we'll inject a fake "vendor/modules.txt" module that provides
    			// those transitive dependencies, and mark it as a dependency of the main
    			// module. That allows us to elide the actual structure of the module
    			// graph, but still distinguishes between direct and indirect
    			// dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    							stubs = append(stubs, sym)
    						}
    					}
    				}
    
    			// Handle objects compiled with -fno-plt. Rewrite local calls to avoid indirect calling.
    			// These are 0 sized relocs. They mark the mtctr r12, or bctrl + ld r2,24(r1).
    			case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLTSEQ):
    				if ldr.SymType(r.Sym()) == sym.STEXT {
    					// This should be an mtctr instruction. Turn it into a nop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // PartitionedCall op to execute the cluster in the regular graph executor if
    // need be.  PartitionedCall, however, reruns the entire TF graph optimization
    // pipeline over the cluster which includes this mark for compilation pass.  To
    // avoid endlessly recursing we tag nodes that we've already visited with this
    // attribute so that we can bail out if we see them a second time.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    		}
    		c.asmout(p, o, out[:])
    		for i = 0; i < int32(o.size/4); i++ {
    			c.ctxt.Arch.ByteOrder.PutUint32(bp, out[i])
    			bp = bp[4:]
    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// We use REGTMP as a scratch register during call injection,
    	// so instruction sequences that use REGTMP are unsafe to
    	// preempt asynchronously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    		// and if the C value is partially or completely uninitialized,
    		// the assignment will mark the Go stack as uninitialized.
    		// The Go compiler does not update msan for changes to the
    		// stack. It is possible that the stack will remain
    		// uninitialized, and then later be used in a way that is
    		// visible to msan, possibly leading to a false positive.
    		// Mark the stack space as written, to avoid this problem.
    		// See issue 26209.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/runtime/map.go

    	extra *mapextra // optional fields
    }
    
    // mapextra holds fields that are not present on all maps.
    type mapextra struct {
    	// If both key and elem do not contain pointers and are inline, then we mark bucket
    	// type as containing no pointers. This avoids scanning such maps.
    	// However, bmap.overflow is a pointer. In order to keep overflow buckets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    // pathSet in upgrades, then downgrading (or further upgrading) those modules as
    // needed to maintain any already-resolved versions of other modules.
    // applyUpgrades does not mark the new versions as resolved, so they can still
    // be further modified by other queries (such as wildcards).
    //
    // If all pathSets are resolved without any changes to the build list,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    		// First build the section contents into a byte buffer.
    		deltaBuf = deltaBuf[:0]
    		if haslr && fi.TopFrame() {
    			// Mark the link register as having an undefined value.
    			// This stops call stack unwinders progressing any further.
    			// TODO: similar mark on non-LR architectures.
    			deltaBuf = append(deltaBuf, dwarf.DW_CFA_undefined)
    			deltaBuf = dwarf.AppendUleb128(deltaBuf, uint64(thearch.Dwarfreglr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    				vchange := phielimValue(v)
    				if vchange && debug > 1 {
    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// Eliminate copy inputs.
    				// If any copy input becomes unused, mark it
    				// as invalid and discard its argument. Repeat
    				// recursively on the discarded argument.
    				// This phase helps remove phantom "dead copy" uses
    				// of a value so that a x.Uses==1 rule condition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

             { "dst": "0.0.0.0/0" },
             { "dst": "::/0" }
           ]
         }
       },
       {
         "type": "portmap",
         "capabilities": {"portMappings": true},
         "externalSetMarkChain": "KUBE-MARK-MASQ"
       }
     ]
    }
    EOF
    }
    
    function install_cni_if_needed {
      echo "Checking CNI Installation at /opt/cni/bin"
      if ! command -v /opt/cni/bin/loopback &> /dev/null ; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top