Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,352 for marking (0.14 sec)

  1. src/runtime/mgcmark.go

    	drainCheckThreshold = 100000
    
    	// pagesPerSpanRoot indicates how many pages to scan from a span root
    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

                releasedVersionsFile()
            )
        }
    
        return versionNumber
    }
    
    /**
     * Returns the trimmed contents of the file at the given [path] after
     * marking the file as a build logic input.
     */
    fun Project.trimmedContentsOfFile(path: String): String =
        providers.fileContents(repoRoot().file(path)).asText.get().trim()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables_linux.go

    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    		// TODO largely identical/copied from tools/istio-iptables/pkg/capture/run_linux.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. hack/update-translations.sh

      case ${opt} in
        h)
          echo "$0 [-f files] [-x] [-k] [-g]"
          echo " -f <file-path>: Files to process"
          echo " -x extract strings to a POT file"
          echo " -k fix .po files; deprecate translations by marking them obsolete and supply default messages"
          echo " -g sort .po files and generate .mo files"
          exit 0
          ;;
        f)
          KUBECTL_FILES+=("${OPTARG}")
          ;;
        x)
          generate_pot="true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. src/runtime/mfixalloc.go

    // contains heap pointers.
    //
    // The caller is responsible for locking around FixAlloc calls.
    // Callers can keep state in the object but the first word is
    // smashed by freeing and reallocating.
    //
    // Consider marking fixalloc'd types not in heap by embedding
    // runtime/internal/sys.NotInHeap.
    type fixalloc struct {
    	size   uintptr
    	first  func(arg, p unsafe.Pointer) // called first time p is returned
    	arg    unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

     * and a future role which will replace it in the next major Gradle version. These roles represent a narrowing migration
     * from one role to another by marking usages which are present in the current role but not present in the eventual role
     * as deprecated.
     *
     * <p>The roles here are all meant to be temporary roles used for migration only, to be removed in Gradle 9.0.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                        LOGGER.debug("Marking daemon stopped due to {}. The daemon is not running a build", reason);
                        stopReason = reason;
                        setState(State.Stopped);
                        break;
                    case Busy:
                    case Canceled:
                    case Broken:
                    case StopRequested:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. pkg/util/filesystem/util_windows.go

    		})
    
    	// PollImmediate will return "timed out waiting for the condition" if the function it
    	// invokes never returns true
    	if err != nil {
    		klog.V(2).InfoS("Failed all attempts to dial the socket so marking it as a non-Unix Domain socket. Last socket error along with the error from PollImmediate follow",
    			"filePath", filePath, "lastSocketErr", lastSocketErr, "err", err)
    		return false, nil
    	}
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compilation_profiler.cc

      // observed to be megamorphic once stay megamorphic forever.
      if (!stats->is_megamorphic &&
          ShouldBeMegamorphic(stats->compile_count, stats->execution_count)) {
        VLOG(1) << "Marking " << function.name()
                << " as megamorphic, compile_count=" << stats->compile_count
                << " execution_count=" << stats->execution_count;
        stats->is_megamorphic = true;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/statusupdater/node_status_updater.go

    		// to indicate this node status needs to be updated again
    		nsu.actualStateOfWorld.SetNodeStatusUpdateNeeded(logger, nodeName)
    
    		logger.V(2).Info("Could not update node status; re-marking for update", "node", klog.KObj(nodeObj), "err", err)
    
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top