Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for Fd2path (0.55 sec)

  1. build/common.sh

    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    
    # Common utilities, variables and checks for all build scripts.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Unset CDPATH, having it set messes up with script import paths
    unset CDPATH
    
    USER_ID=$(id -u)
    GROUP_ID=$(id -g)
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    IFS=" " read -r -a DOCKER <<< "docker ${DOCKER_OPTS}"
    DOCKER_HOST=${DOCKER_HOST:-""}
    GOPROXY=${GOPROXY:-""}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        paths.add(path);
                    }
                }
            }
        }
    
        public void addCompileSourceRoot(String path) {
            addPath(getCompileSourceRoots(), path);
        }
    
        public void addTestCompileSourceRoot(String path) {
            addPath(getTestCompileSourceRoots(), path);
        }
    
        public List<String> getCompileSourceRoots() {
            return compileSourceRoots;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    u":"100m","memory":"128Mi"}},"statusPort":15020,"tracer":"zipkin"},"proxy_init":{"image":"proxyv2","resources":{"limits":{"cpu":"100m","memory":"50Mi"},"requests":{"cpu":"10m","memory":"10Mi"}}},"sds":{"enabled":false,"token":{"aud":"istio-ca"},"udsPath":""},"securityNamespace":"istio-system","tag":"1.3.1","telemetryNamespace":"istio-system","tracer":{"datadog":{"address":"$(HOST_IP):8126"},"lightstep":{"accessToken":"","address":"","cacertPath":"","secure":true},"zipkin":{"address":""}},"trustD...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    u":"100m","memory":"128Mi"}},"statusPort":15020,"tracer":"zipkin"},"proxy_init":{"image":"proxyv2","resources":{"limits":{"cpu":"100m","memory":"50Mi"},"requests":{"cpu":"10m","memory":"10Mi"}}},"sds":{"enabled":false,"token":{"aud":"istio-ca"},"udsPath":""},"securityNamespace":"istio-system","tag":"1.3.1","telemetryNamespace":"istio-system","tracer":{"datadog":{"address":"$(HOST_IP):8126"},"lightstep":{"accessToken":"","address":"","cacertPath":"","secure":true},"zipkin":{"address":""}},"trustD...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    u":"100m","memory":"128Mi"}},"statusPort":15020,"tracer":"zipkin"},"proxy_init":{"image":"proxyv2","resources":{"limits":{"cpu":"100m","memory":"50Mi"},"requests":{"cpu":"10m","memory":"10Mi"}}},"sds":{"enabled":false,"token":{"aud":"istio-ca"},"udsPath":""},"securityNamespace":"istio-system","tag":"1.3.1","telemetryNamespace":"istio-system","tracer":{"datadog":{"address":"$(HOST_IP):8126"},"lightstep":{"accessToken":"","address":"","cacertPath":"","secure":true},"zipkin":{"address":""}},"trustD...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    u":"100m","memory":"128Mi"}},"statusPort":15020,"tracer":"zipkin"},"proxy_init":{"image":"proxyv2","resources":{"limits":{"cpu":"100m","memory":"50Mi"},"requests":{"cpu":"10m","memory":"10Mi"}}},"sds":{"enabled":false,"token":{"aud":"istio-ca"},"udsPath":""},"securityNamespace":"istio-system","tag":"1.3.1","telemetryNamespace":"istio-system","tracer":{"datadog":{"address":"$(HOST_IP):8126"},"lightstep":{"accessToken":"","address":"","cacertPath":"","secure":true},"zipkin":{"address":""}},"trustD...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    	}
    
    	t.Parallel()
    
    	sdkPath, err := testenv.Command(t, "xcrun", "--sdk", "appletvos", "--show-sdk-path").Output()
    	if err != nil {
    		t.Skip("failed to locate appletvos SDK, skipping")
    	}
    	CC := []string{
    		"clang",
    		"-arch",
    		"arm64",
    		"-isysroot", strings.TrimSpace(string(sdkPath)),
    		"-mtvos-version-min=12.0",
    		"-fembed-bitcode",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    			return nil, err
    		}
    	}
    }
    
    func Getppid() (ppid int) {
    	pe, err := getProcessEntry(Getpid())
    	if err != nil {
    		return -1
    	}
    	return int(pe.ParentProcessID)
    }
    
    func fdpath(fd Handle, buf []uint16) ([]uint16, error) {
    	const (
    		FILE_NAME_NORMALIZED = 0
    		VOLUME_NAME_DOS      = 0
    	)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway.go

    					iac.CidrRanges = append(iac.CidrRanges, cidr)
    				}
    			}
    			httpConnManager.InternalAddressConfig = iac
    		}
    	}
    
    	return httpConnManager
    }
    
    // sdsPath: is the path to the mesh-wide workload sds uds path, and it is assumed that if this path is unset, that sds is
    // disabled mesh-wide
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      fi
    
      echo "Mounting master-pd"
      local -r pd_path="/dev/disk/by-id/google-master-pd"
      local -r mount_point="/mnt/disks/master-pd"
      # Format and mount the disk, create directories on it for all of the master's
      # persistent data, and link them to where they're used.
      mkdir -p "${mount_point}"
      safe-format-and-mount "${pd_path}" "${mount_point}"
      echo "Mounted master-pd '${pd_path}' at '${mount_point}'"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top