Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for relPath (0.16 sec)

  1. ci/official/utilities/setup_macos.sh

    # Mac version of Core utilities differ in usage. Since our scripts are written
    # with the GNU style, we need to set GNU utilities to be default on Mac.
    if [[ -n "$(which grealpath)" ]] &&  [[ -n "$(which gstat)" ]]; then
      alias realpath=grealpath
      alias stat=gstat
      # By default, aliases are only expanded in interactive shells, which means
      # that they are not substituted for their corresponding commands in shell
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. hack/apidiff.sh

    fi
    
    # Sanitize paths:
    # - We need relative paths because we will invoke apidiff in
    #   different work trees.
    # - Must start with a dot.
    for (( i=0; i<${#targets[@]}; i++ )); do
        d="${targets[i]}"
        d=$(realpath -s --relative-to="$(pwd)" "${d}")
        if [ "${d}" != "." ]; then
            # sub-directories have to have a leading dot.
            d="./${d}"
        fi
        targets[i]="${d}"
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    		// We are receiving an unwanted resource, silently ignore it.
    		deltaLog.Debugf("Received unsubscribed resource: %v, %v", key, c.tree)
    	}
    }
    
    func (c *Client) relate(parent, child resourceKey) {
    	parentNode, f := c.tree[parent]
    	if !f {
    		deltaLog.Fatalf("Failed to relate resource: unknown parent: %v, %v", parent, c.tree)
    	}
    	childNode, f := c.tree[child]
    	if !f {
    		// Not yet watching child, create a node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	BootstrapTokens []bootstraptokenv1.BootstrapToken `json:"bootstrapTokens,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. kotlin-js-store/yarn.lock

      dependencies:
        graceful-fs "^4.2.0"
        jsonfile "^4.0.0"
        universalify "^0.1.0"
    
    fs.realpath@^1.0.0:
      version "1.0.0"
      resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
      integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
    
    fsevents@~2.3.2:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    	fldPath := fld.Child("hard")
    	for k, v := range status.Hard {
    		resPath := fldPath.Key(string(k))
    		allErrs = append(allErrs, ValidateResourceQuotaResourceName(k, resPath)...)
    		allErrs = append(allErrs, ValidateResourceQuantityValue(k, v, resPath)...)
    	}
    	fldPath = fld.Child("used")
    	for k, v := range status.Used {
    		resPath := fldPath.Key(string(k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. src/debug/macho/file.go

    	sh.sr = io.NewSectionReader(r, int64(sh.Offset), int64(sh.Size))
    	sh.ReaderAt = sh.sr
    
    	if sh.Nreloc > 0 {
    		reldat, err := saferio.ReadDataAt(r, uint64(sh.Nreloc)*8, int64(sh.Reloff))
    		if err != nil {
    			return err
    		}
    		b := bytes.NewReader(reldat)
    
    		bo := f.ByteOrder
    
    		sh.Relocs = make([]Reloc, sh.Nreloc)
    		for i := range sh.Relocs {
    			rel := &sh.Relocs[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/QueuesTest.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Tests for {@link Queues}.
     *
     * @author Dimitris Andreou
     */
    public class QueuesTest extends TestCase {
      /*
       * All the following tests relate to BlockingQueue methods in Queues.
       */
    
      public static List<BlockingQueue<Object>> blockingQueues() {
        return ImmutableList.<BlockingQueue<Object>>of(
            new LinkedBlockingQueue<Object>(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	BootstrapTokens []bootstraptokenv1.BootstrapToken
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun bool
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	NodeRegistration NodeRegistrationOptions
    
    	// LocalAPIEndpoint represents the endpoint of the API server instance that's deployed on this control plane node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/QueuesTest.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Tests for {@link Queues}.
     *
     * @author Dimitris Andreou
     */
    public class QueuesTest extends TestCase {
      /*
       * All the following tests relate to BlockingQueue methods in Queues.
       */
    
      public static List<BlockingQueue<Object>> blockingQueues() {
        return ImmutableList.<BlockingQueue<Object>>of(
            new LinkedBlockingQueue<Object>(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top