Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for MARK (0.04 sec)

  1. src/testing/testing.go

    // into a constant on the basis that it is an unexported package-scope
    // variable that is never changed. If the compiler ever starts implementing
    // such an optimization, we will need some technique to mark this variable
    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    // Testing reports whether the current code is being run in a test.
    // This will report true in programs created by "go test",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  9. 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)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       *       should be rare.
       *   <li>The waiters list should be very short.
       * </ul>
       */
      private void removeWaiter(Waiter node) {
        node.thread = null; // mark as 'deleted'
        restart:
        while (true) {
          Waiter pred = null;
          Waiter curr = waiters;
          if (curr == Waiter.TOMBSTONE) {
            return; // give up if someone is calling complete
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top