Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for MARK (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/serviceregistry/serviceregistry_test.go

    		// Start as unhealthy, should have no instances
    		makeIstioObject(t, store, setHealth(workloadEntry, false))
    		instances := []EndpointResponse{}
    		expectServiceEndpoints(t, fx, expectedSvc, 80, instances)
    
    		// Mark healthy, get instances
    		makeIstioObject(t, store, setHealth(workloadEntry, true))
    		instances = []EndpointResponse{{
    			Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address,
    			Port:    80,
    		}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                    format: int32
                    maximum: 254
                    minimum: 1
                    type: integer
                  passiveMode:
                    description: 'Mark session as passive: a passive session will not
                      attempt to start the connection and will wait for control packets
                      from peer before it begins replying.'
                    type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    // Make the new state visible in case a dependency resolution listener queries the result, which requires the new state
                    currentResolveState.set(Optional.of(results));
    
                    // Mark all affected configurations as observed
                    markParentsObserved(GRAPH_RESOLVED);
    
                    // TODO: Currently afterResolve runs if there are unresolved dependencies, which are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. src/time/format.go

    //	Month: "Jan" "January" "01" "1"
    //	Day of the week: "Mon" "Monday"
    //	Day of the month: "2" "_2" "02"
    //	Day of the year: "__2" "002"
    //	Hour: "15" "3" "03" (PM or AM)
    //	Minute: "4" "04"
    //	Second: "5" "05"
    //	AM/PM mark: "PM"
    //
    // Numeric time zone offsets format as follows:
    //
    //	"-0700"     ±hhmm
    //	"-07:00"    ±hh:mm
    //	"-07"       ±hh
    //	"-070000"   ±hhmmss
    //	"-07:00:00" ±hh:mm:ss
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top